From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Jarno Malmari Newsgroups: gmane.emacs.devel Subject: [PATCH 2/2] Initial implementation for HTTP Digest qop for url Date: Tue, 14 Feb 2017 23:12:57 +0200 Message-ID: <1487106777-17025-3-git-send-email-jarno@malmari.fi> References: <1487106777-17025-1-git-send-email-jarno@malmari.fi> NNTP-Posting-Host: blaine.gmane.org X-Trace: blaine.gmane.org 1487107003 1147 195.159.176.226 (14 Feb 2017 21:16:43 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Tue, 14 Feb 2017 21:16:43 +0000 (UTC) Cc: eliz@gnu.org To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Feb 14 22:16:39 2017 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cdkSk-0008VE-H3 for ged-emacs-devel@m.gmane.org; Tue, 14 Feb 2017 22:16:38 +0100 Original-Received: from localhost ([::1]:37203 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cdkSq-0008WV-8B for ged-emacs-devel@m.gmane.org; Tue, 14 Feb 2017 16:16:44 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:43566) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cdkQN-0006wK-Lj for emacs-devel@gnu.org; Tue, 14 Feb 2017 16:14:13 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cdkQL-0003l9-Ut for emacs-devel@gnu.org; Tue, 14 Feb 2017 16:14:11 -0500 Original-Received: from out1-smtp.messagingengine.com ([66.111.4.25]:55287) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cdkQH-0003f0-Vn; Tue, 14 Feb 2017 16:14:06 -0500 Original-Received: from compute6.internal (compute6.nyi.internal [10.202.2.46]) by mailout.nyi.internal (Postfix) with ESMTP id 73036211F4; Tue, 14 Feb 2017 16:14:04 -0500 (EST) Original-Received: from frontend1 ([10.202.2.160]) by compute6.internal (MEProxy); Tue, 14 Feb 2017 16:14:04 -0500 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=malmari.fi; h=cc :date:from:in-reply-to:message-id:references:subject:to :x-me-sender:x-me-sender:x-sasl-enc:x-sasl-enc; s=mesmtp; bh=idR KKRqNO1vFryfYXWGHP025Tmg=; b=rkqxKHk0ZgxeoHK0CMsBxasG6cXczZIDaMS wD7wgd+SVCgTXStHcDxPlpXQaoNPoT9H4e8blreaaxgopbeGNPYWDSCCzunwGrlc QC+btQheavUW4biK4pCFUcA8n5/5SJVL/bsE2yLZgYWmNJBhaOfsLTr3BubRhE/U wC95ImHY= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:in-reply-to:message-id :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc :x-sasl-enc; s=smtpout; bh=idRKKRqNO1vFryfYXWGHP025Tmg=; b=M3GBV EU93P8zx8dB7spQ4XFcr8ft+6JZhzCS8mqZOOl1ztsbCJKuUAYxJSNJyf6p2tGIg qsZLygKdTtueSuWeYnRFEFuoA+n44sTqwPWZw9TsE5Qm5o60Fium1kAWVPdUai0w oYmDjaWmv2oOEesiSX7CJMordGqawFzVjlYMpk= X-ME-Sender: X-Sasl-enc: pT3aTYJ4n+m1173fuDicuiUXODkxKOrtkau6Mhtjy1io 1487106844 Original-Received: from vabi.peto.intranet (a88-113-156-118.elisa-laajakaista.fi [88.113.156.118]) by mail.messagingengine.com (Postfix) with ESMTPA id CC3457E0F1; Tue, 14 Feb 2017 16:14:03 -0500 (EST) X-Mailer: git-send-email 2.7.0.25.gfc10eb5 In-Reply-To: <1487106777-17025-1-git-send-email-jarno@malmari.fi> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 66.111.4.25 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:212388 Archived-At: Some servers have dropped backward compatibility with HTTP Digest Authentication without "qop". The Quality Of Protection scheme is partially implemented: only one supported qop (qop=auth), only one supported algorithm (md5), nonce count remains always as 1 (no replays) * lisp/url/url-auth.el (url-digest-auth-build-response): Hook up new functionality, or fall back to previous. (url-digest-auth-make-request-digest-qop): (url-digest-auth-make-cnonce, url-digest-auth-nonce-count): (url-digest-auth-name-value-string): Add new helper functions. * test/lisp/url/url-auth-tests.el (url-auth-test-challenges): (url-auth-test-digest-request-digest): Test the new implementation. Parts of these were accidentally already merged in the past. --- lisp/url/url-auth.el | 60 ++++++++++++++++++++++++++++++++++++----- test/lisp/url/url-auth-tests.el | 28 +++++++++++-------- 2 files changed, 71 insertions(+), 17 deletions(-) diff --git a/lisp/url/url-auth.el b/lisp/url/url-auth.el index 6512e12..3447caa 100644 --- a/lisp/url/url-auth.el +++ b/lisp/url/url-auth.el @@ -131,8 +131,8 @@ url-basic-auth ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Digest authorization code ;;; ------------------------ -;;; This implements the DIGEST authorization type. See the internet draft -;;; ftp://ds.internic.net/internet-drafts/draft-ietf-http-digest-aa-01.txt +;;; This implements the DIGEST authorization type. See RFC 2617 +;;; https://www.ietf.org/rfc/rfc2617.txt ;;; for the complete documentation on this type. ;;; ;;; This is very secure @@ -165,6 +165,16 @@ url-digest-auth-make-request-digest a password." (url-digest-auth-kd (url-digest-auth-colonjoin nonce ha2) ha1)) +(defsubst url-digest-auth-make-request-digest-qop (qop ha1 ha2 nonce nc cnonce) + "Construct the request-digest with qop. +QOP describes the \"quality of protection\" and algorithm to use. +All of the strings QOP, HA1, HA2, NONCE, NC, and CNONCE are +combined into a single hash value that proves to a server the +user knows a password. It's worth noting that HA2 already +depends on value of QOP." + (url-digest-auth-kd (url-digest-auth-colonjoin + nonce nc cnonce qop ha2) ha1)) + (defsubst url-digest-auth-directory-id (url realm) "Make an identifier for selecting a key in key cache. The identifier is made either from URL or REALM. It represents a @@ -179,6 +189,21 @@ url-digest-auth-server-id key cache `url-digest-auth-storage'." (format "%s:%d" (url-host url) (url-port url))) +(defun url-digest-auth-make-cnonce () + "Compute a new unique client nonce value." + (base64-encode-string + (apply 'format "%016x%04x%04x%05x%05x" (random) (current-time)) t)) + +(defun url-digest-auth-nonce-count (nonce) + "The number requests sent to server with the given NONCE. +This count includes the request we're preparing here. + +Currently, this is not implemented and will always return 1. + +Value returned is in string format with leading zeroes, such as +\"00000001\"." + (format "%08x" 1)) + (defun url-digest-auth-name-value-string (pairs) "Concatenate name-value pairs in association list PAIRS. @@ -284,12 +309,20 @@ url-digest-auth-build-response using the contents of alist ATTRS. ATTRS is expected to contain at least the server's \"nonce\" -value. It also might contain the optional \"opaque\" value." +value. It also might contain the optional \"opaque\" value. +Newer implementations conforming to RFC 2617 should also contain +qop (Quality Of Protection) and related attributes. + +Restrictions on Quality of Protection scheme: The qop value +\"auth-int\" or algorithm any other than \"MD5\" are not +implemented." + (when key (let ((user (nth 1 key)) (ha1 (nth 2 key)) (ha2 (nth 3 key)) (digest-uri (url-filename url)) + (qop (cdr-safe (assoc "qop" attrs))) (nonce (cdr-safe (assoc "nonce" attrs))) (opaque (cdr-safe (assoc "opaque" attrs)))) @@ -299,9 +332,24 @@ url-digest-auth-build-response (append (list (cons 'username user) (cons 'realm realm) (cons 'nonce nonce) - (cons 'uri digest-uri) - (cons 'response (url-digest-auth-make-request-digest - ha1 ha2 nonce))) + (cons 'uri digest-uri)) + + (cond + ((null qop) + (list (cons 'response (url-digest-auth-make-request-digest + ha1 ha2 nonce)))) + ((string= qop "auth") + (let ((nc (url-digest-auth-nonce-count nonce)) + (cnonce (url-digest-auth-make-cnonce))) + (list (cons 'qop qop) + (cons 'nc nc) + (cons 'cnonce cnonce) + (cons 'response + (url-digest-auth-make-request-digest-qop + qop ha1 ha2 nonce nc cnonce))))) + (t (message "Quality of protection \"%s\" is not implemented." qop) + nil)) + (if opaque (list (cons 'opaque opaque))))))))) diff --git a/test/lisp/url/url-auth-tests.el b/test/lisp/url/url-auth-tests.el index a6b31d7..30636db 100644 --- a/test/lisp/url/url-auth-tests.el +++ b/test/lisp/url/url-auth-tests.el @@ -104,13 +104,21 @@ url-auth-test-challenges (plist-get row :expected-ha2))))) (ert-deftest url-auth-test-digest-request-digest () - "Check digest response value when not supporting `qop'." + "Check digest response value." (dolist (row url-auth-test-challenges) - (should (string= (url-digest-auth-make-request-digest - (plist-get row :expected-ha1) - (plist-get row :expected-ha2) - (plist-get row :nonce)) - (plist-get row :expected-response))))) + (should (string= (plist-get row :expected-response) + (if (plist-member row :qop) + (url-digest-auth-make-request-digest-qop + (plist-get row :qop) + (plist-get row :expected-ha1) + (plist-get row :expected-ha2) + (plist-get row :nonce) + (plist-get row :nc) + (plist-get row :cnonce)) + (url-digest-auth-make-request-digest + (plist-get row :expected-ha1) + (plist-get row :expected-ha2) + (plist-get row :nonce))))))) (ert-deftest url-auth-test-digest-create-key () "Check user credentials in their hashed form." @@ -258,14 +266,12 @@ url-auth-test-challenges (progn ;; We don't know these, just check that they exists. (should (string-match-p ".*response=\".*?\".*" auth)) - ;; url-digest-auth doesn't return these AFAICS. -;;; (should (string-match-p ".*nc=\".*?\".*" auth)) -;;; (should (string-match-p ".*cnonce=\".*?\".*" auth)) - ) + (should (string-match-p ".*nc=\".*?\".*" auth)) + (should (string-match-p ".*cnonce=\".*?\".*" auth))) (should (string-match ".*response=\"\\(.*?\\)\".*" auth)) (should (string= (match-string 1 auth) (plist-get challenge :expected-response)))) - ))) + ))) (ert-deftest url-auth-test-digest-auth-opaque () "Check that `opaque' value is added to result when presented by -- 2.7.0.25.gfc10eb5