-rw-r--r-- | include/opkele/types.h | 5 | ||||
-rw-r--r-- | lib/consumer.cc | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/include/opkele/types.h b/include/opkele/types.h index 757c0af..8f4bf73 100644 --- a/include/opkele/types.h +++ b/include/opkele/types.h | |||
@@ -34,128 +34,133 @@ namespace opkele { | |||
34 | */ | 34 | */ |
35 | class secret_t : public vector<unsigned char> { | 35 | class secret_t : public vector<unsigned char> { |
36 | public: | 36 | public: |
37 | 37 | ||
38 | /** | 38 | /** |
39 | * xor the secret and hmac together and encode, using base64 | 39 | * xor the secret and hmac together and encode, using base64 |
40 | * @param key_sha1 pointer to the sha1 digest | 40 | * @param key_sha1 pointer to the sha1 digest |
41 | * @param rv reference to the return value | 41 | * @param rv reference to the return value |
42 | */ | 42 | */ |
43 | void enxor_to_base64(const unsigned char *key_sha1,string& rv) const; | 43 | void enxor_to_base64(const unsigned char *key_sha1,string& rv) const; |
44 | /** | 44 | /** |
45 | * decode base64-encoded secret and xor it with the sha1 digest | 45 | * decode base64-encoded secret and xor it with the sha1 digest |
46 | * @param key_sha1 pointer to the message digest | 46 | * @param key_sha1 pointer to the message digest |
47 | * @param b64 base64-encoded secret value | 47 | * @param b64 base64-encoded secret value |
48 | */ | 48 | */ |
49 | void enxor_from_base64(const unsigned char *key_sha1,const string& b64); | 49 | void enxor_from_base64(const unsigned char *key_sha1,const string& b64); |
50 | /** | 50 | /** |
51 | * plainly encode to base64 representation | 51 | * plainly encode to base64 representation |
52 | * @param rv reference to the return value | 52 | * @param rv reference to the return value |
53 | */ | 53 | */ |
54 | void to_base64(string& rv) const; | 54 | void to_base64(string& rv) const; |
55 | /** | 55 | /** |
56 | * decode cleartext secret from base64 | 56 | * decode cleartext secret from base64 |
57 | * @param b64 base64-encoded representation of the secret value | 57 | * @param b64 base64-encoded representation of the secret value |
58 | */ | 58 | */ |
59 | void from_base64(const string& b64); | 59 | void from_base64(const string& b64); |
60 | }; | 60 | }; |
61 | 61 | ||
62 | /** | 62 | /** |
63 | * Interface to the association. | 63 | * Interface to the association. |
64 | */ | 64 | */ |
65 | class association_t { | 65 | class association_t { |
66 | public: | 66 | public: |
67 | 67 | ||
68 | /** | 68 | /** |
69 | * retrieve the server with which association was established. | 69 | * retrieve the server with which association was established. |
70 | * @return server name | 70 | * @return server name |
71 | */ | 71 | */ |
72 | virtual string server() const = 0; | 72 | virtual string server() const = 0; |
73 | /** | 73 | /** |
74 | * retrieve the association handle. | 74 | * retrieve the association handle. |
75 | * @return handle | 75 | * @return handle |
76 | */ | 76 | */ |
77 | virtual string handle() const = 0; | 77 | virtual string handle() const = 0; |
78 | /** | 78 | /** |
79 | * retrieve the association type. | 79 | * retrieve the association type. |
80 | * @return association type | 80 | * @return association type |
81 | */ | 81 | */ |
82 | virtual string assoc_type() const = 0; | 82 | virtual string assoc_type() const = 0; |
83 | /** | 83 | /** |
84 | * retrieve the association secret. | 84 | * retrieve the association secret. |
85 | * @return association secret | 85 | * @return association secret |
86 | */ | 86 | */ |
87 | virtual secret_t secret() const = 0; | 87 | virtual secret_t secret() const = 0; |
88 | /** | 88 | /** |
89 | * retrieve the number of seconds the association expires in. | 89 | * retrieve the number of seconds the association expires in. |
90 | * @return seconds till expiration | 90 | * @return seconds till expiration |
91 | */ | 91 | */ |
92 | virtual int expires_in() const = 0; | 92 | virtual int expires_in() const = 0; |
93 | /** | 93 | /** |
94 | * check whether the association is stateless. | 94 | * check whether the association is stateless. |
95 | * @return true if stateless | 95 | * @return true if stateless |
96 | */ | 96 | */ |
97 | virtual bool stateless() const = 0; | 97 | virtual bool stateless() const = 0; |
98 | /** | ||
99 | * check whether the association is expired. | ||
100 | * @return true if expired | ||
101 | */ | ||
102 | virtual bool is_expired() const = 0; | ||
98 | }; | 103 | }; |
99 | 104 | ||
100 | /** | 105 | /** |
101 | * the auto_ptr<> for association_t object type | 106 | * the auto_ptr<> for association_t object type |
102 | */ | 107 | */ |
103 | typedef auto_ptr<association_t> assoc_t; | 108 | typedef auto_ptr<association_t> assoc_t; |
104 | 109 | ||
105 | /** | 110 | /** |
106 | * request/response parameters map | 111 | * request/response parameters map |
107 | */ | 112 | */ |
108 | class params_t : public map<string,string> { | 113 | class params_t : public map<string,string> { |
109 | public: | 114 | public: |
110 | 115 | ||
111 | /** | 116 | /** |
112 | * check whether the parameter is present. | 117 | * check whether the parameter is present. |
113 | * @param n the parameter name | 118 | * @param n the parameter name |
114 | * @return true if yes | 119 | * @return true if yes |
115 | */ | 120 | */ |
116 | bool has_param(const string& n) const; | 121 | bool has_param(const string& n) const; |
117 | /** | 122 | /** |
118 | * retrieve the parameter (const version) | 123 | * retrieve the parameter (const version) |
119 | * @param n the parameter name | 124 | * @param n the parameter name |
120 | * @return the parameter value | 125 | * @return the parameter value |
121 | * @throw failed_lookup if there is no such parameter | 126 | * @throw failed_lookup if there is no such parameter |
122 | */ | 127 | */ |
123 | const string& get_param(const string& n) const; | 128 | const string& get_param(const string& n) const; |
124 | /** | 129 | /** |
125 | * retrieve the parameter. | 130 | * retrieve the parameter. |
126 | * @param n the parameter name | 131 | * @param n the parameter name |
127 | * @return the parameter value | 132 | * @return the parameter value |
128 | * @throw failed_lookup if there is no such parameter | 133 | * @throw failed_lookup if there is no such parameter |
129 | */ | 134 | */ |
130 | string& get_param(const string& n); | 135 | string& get_param(const string& n); |
131 | 136 | ||
132 | /** | 137 | /** |
133 | * parse the OpenID key/value data. | 138 | * parse the OpenID key/value data. |
134 | * @param kv the OpenID key/value data | 139 | * @param kv the OpenID key/value data |
135 | */ | 140 | */ |
136 | void parse_keyvalues(const string& kv); | 141 | void parse_keyvalues(const string& kv); |
137 | /** | 142 | /** |
138 | * sign the fields. | 143 | * sign the fields. |
139 | * @param secret the secret used for signing | 144 | * @param secret the secret used for signing |
140 | * @param sig reference to the string, containing base64-encoded | 145 | * @param sig reference to the string, containing base64-encoded |
141 | * result | 146 | * result |
142 | * @param slist the comma-separated list of fields to sign | 147 | * @param slist the comma-separated list of fields to sign |
143 | * @param prefix the string to prepend to parameter names | 148 | * @param prefix the string to prepend to parameter names |
144 | */ | 149 | */ |
145 | void sign(secret_t secret,string& sig,const string& slist,const char *prefix=0) const; | 150 | void sign(secret_t secret,string& sig,const string& slist,const char *prefix=0) const; |
146 | 151 | ||
147 | /** | 152 | /** |
148 | * append parameters to the URL as a GET-request parameters. | 153 | * append parameters to the URL as a GET-request parameters. |
149 | * @param url the base URL | 154 | * @param url the base URL |
150 | * @param prefix the string to prepend to parameter names | 155 | * @param prefix the string to prepend to parameter names |
151 | * @return the ready-to-use location | 156 | * @return the ready-to-use location |
152 | */ | 157 | */ |
153 | string append_query(const string& url,const char *prefix = "openid.") const; | 158 | string append_query(const string& url,const char *prefix = "openid.") const; |
154 | }; | 159 | }; |
155 | 160 | ||
156 | /** | 161 | /** |
157 | * dump the key/value pairs for the parameters to the stream. | 162 | * dump the key/value pairs for the parameters to the stream. |
158 | * @param o output stream | 163 | * @param o output stream |
159 | * @param p the parameters | 164 | * @param p the parameters |
160 | */ | 165 | */ |
161 | ostream& operator << (ostream& o,const params_t& p); | 166 | ostream& operator << (ostream& o,const params_t& p); |
diff --git a/lib/consumer.cc b/lib/consumer.cc index af309c1..8f66688 100644 --- a/lib/consumer.cc +++ b/lib/consumer.cc | |||
@@ -83,130 +83,128 @@ namespace opkele { | |||
83 | || (r=curl_easy_setopt(curl,CURLOPT_WRITEFUNCTION,_curl_tostring)) | 83 | || (r=curl_easy_setopt(curl,CURLOPT_WRITEFUNCTION,_curl_tostring)) |
84 | || (r=curl_easy_setopt(curl,CURLOPT_WRITEDATA,&response)) | 84 | || (r=curl_easy_setopt(curl,CURLOPT_WRITEDATA,&response)) |
85 | ; | 85 | ; |
86 | if(r) | 86 | if(r) |
87 | throw exception_curl(OPKELE_CP_ "failed to curl_easy_setopt()",r); | 87 | throw exception_curl(OPKELE_CP_ "failed to curl_easy_setopt()",r); |
88 | if(r=curl_easy_perform(curl)) | 88 | if(r=curl_easy_perform(curl)) |
89 | throw exception_curl(OPKELE_CP_ "failed to curl_easy_perform()",r); | 89 | throw exception_curl(OPKELE_CP_ "failed to curl_easy_perform()",r); |
90 | params_t p; p.parse_keyvalues(response); | 90 | params_t p; p.parse_keyvalues(response); |
91 | if(p.has_param("assoc_type") && p.get_param("assoc_type")!="HMAC-SHA1") | 91 | if(p.has_param("assoc_type") && p.get_param("assoc_type")!="HMAC-SHA1") |
92 | throw bad_input(OPKELE_CP_ "unsupported assoc_type"); | 92 | throw bad_input(OPKELE_CP_ "unsupported assoc_type"); |
93 | string st; | 93 | string st; |
94 | if(p.has_param("session_type")) st = p.get_param("session_type"); | 94 | if(p.has_param("session_type")) st = p.get_param("session_type"); |
95 | if((!st.empty()) && st!="DH-SHA1") | 95 | if((!st.empty()) && st!="DH-SHA1") |
96 | throw bad_input(OPKELE_CP_ "unsupported session_type"); | 96 | throw bad_input(OPKELE_CP_ "unsupported session_type"); |
97 | secret_t secret; | 97 | secret_t secret; |
98 | if(st.empty()) { | 98 | if(st.empty()) { |
99 | secret.from_base64(p.get_param("mac_key")); | 99 | secret.from_base64(p.get_param("mac_key")); |
100 | }else{ | 100 | }else{ |
101 | util::bignum_t s_pub = util::base64_to_bignum(p.get_param("dh_server_public")); | 101 | util::bignum_t s_pub = util::base64_to_bignum(p.get_param("dh_server_public")); |
102 | vector<unsigned char> ck(DH_size(dh)+1); | 102 | vector<unsigned char> ck(DH_size(dh)+1); |
103 | unsigned char *ckptr = &(ck.front())+1; | 103 | unsigned char *ckptr = &(ck.front())+1; |
104 | int cklen = DH_compute_key(ckptr,s_pub,dh); | 104 | int cklen = DH_compute_key(ckptr,s_pub,dh); |
105 | if(cklen<0) | 105 | if(cklen<0) |
106 | throw exception_openssl(OPKELE_CP_ "failed to DH_compute_key()"); | 106 | throw exception_openssl(OPKELE_CP_ "failed to DH_compute_key()"); |
107 | if(cklen && (*ckptr)&0x80) { | 107 | if(cklen && (*ckptr)&0x80) { |
108 | (*(--ckptr)) = 0; ++cklen; | 108 | (*(--ckptr)) = 0; ++cklen; |
109 | } | 109 | } |
110 | unsigned char key_sha1[SHA_DIGEST_LENGTH]; | 110 | unsigned char key_sha1[SHA_DIGEST_LENGTH]; |
111 | SHA1(ckptr,cklen,key_sha1); | 111 | SHA1(ckptr,cklen,key_sha1); |
112 | secret.enxor_from_base64(key_sha1,p.get_param("enc_mac_key")); | 112 | secret.enxor_from_base64(key_sha1,p.get_param("enc_mac_key")); |
113 | } | 113 | } |
114 | int expires_in = 0; | 114 | int expires_in = 0; |
115 | if(p.has_param("expires_in")) { | 115 | if(p.has_param("expires_in")) { |
116 | expires_in = util::string_to_long(p.get_param("expires_in")); | 116 | expires_in = util::string_to_long(p.get_param("expires_in")); |
117 | }else if(p.has_param("issued") && p.has_param("expiry")) { | 117 | }else if(p.has_param("issued") && p.has_param("expiry")) { |
118 | expires_in = util::w3c_to_time(p.get_param("expiry"))-util::w3c_to_time(p.get_param("issued")); | 118 | expires_in = util::w3c_to_time(p.get_param("expiry"))-util::w3c_to_time(p.get_param("issued")); |
119 | }else | 119 | }else |
120 | throw bad_input(OPKELE_CP_ "no expiration information"); | 120 | throw bad_input(OPKELE_CP_ "no expiration information"); |
121 | return store_assoc(server,p.get_param("assoc_handle"),secret,expires_in); | 121 | return store_assoc(server,p.get_param("assoc_handle"),secret,expires_in); |
122 | } | 122 | } |
123 | 123 | ||
124 | string consumer_t::checkid_immediate(const string& identity,const string& return_to,const string& trust_root,extension_t *ext) { | 124 | string consumer_t::checkid_immediate(const string& identity,const string& return_to,const string& trust_root,extension_t *ext) { |
125 | return checkid_(mode_checkid_immediate,identity,return_to,trust_root,ext); | 125 | return checkid_(mode_checkid_immediate,identity,return_to,trust_root,ext); |
126 | } | 126 | } |
127 | string consumer_t::checkid_setup(const string& identity,const string& return_to,const string& trust_root,extension_t *ext) { | 127 | string consumer_t::checkid_setup(const string& identity,const string& return_to,const string& trust_root,extension_t *ext) { |
128 | return checkid_(mode_checkid_setup,identity,return_to,trust_root,ext); | 128 | return checkid_(mode_checkid_setup,identity,return_to,trust_root,ext); |
129 | } | 129 | } |
130 | string consumer_t::checkid_(mode_t mode,const string& identity,const string& return_to,const string& trust_root,extension_t *ext) { | 130 | string consumer_t::checkid_(mode_t mode,const string& identity,const string& return_to,const string& trust_root,extension_t *ext) { |
131 | params_t p; | 131 | params_t p; |
132 | if(mode==mode_checkid_immediate) | 132 | if(mode==mode_checkid_immediate) |
133 | p["mode"]="checkid_immediate"; | 133 | p["mode"]="checkid_immediate"; |
134 | else if(mode==mode_checkid_setup) | 134 | else if(mode==mode_checkid_setup) |
135 | p["mode"]="checkid_setup"; | 135 | p["mode"]="checkid_setup"; |
136 | else | 136 | else |
137 | throw bad_input(OPKELE_CP_ "unknown checkid_* mode"); | 137 | throw bad_input(OPKELE_CP_ "unknown checkid_* mode"); |
138 | string iurl = canonicalize(identity); | 138 | string iurl = canonicalize(identity); |
139 | string server, delegate; | 139 | string server, delegate; |
140 | retrieve_links(iurl,server,delegate); | 140 | retrieve_links(iurl,server,delegate); |
141 | p["identity"] = delegate.empty()?iurl:delegate; | 141 | p["identity"] = delegate.empty()?iurl:delegate; |
142 | if(!trust_root.empty()) | 142 | if(!trust_root.empty()) |
143 | p["trust_root"] = trust_root; | 143 | p["trust_root"] = trust_root; |
144 | p["return_to"] = return_to; | 144 | p["return_to"] = return_to; |
145 | try { | 145 | try { |
146 | string ah = find_assoc(server)->handle(); | 146 | string ah = find_assoc(server)->handle(); |
147 | if(ah->is_expired()) /* TODO: or should I throw some other exception to force programmer fix his implementation? */ | ||
148 | throw failed_lookup(OPKELE_CP_ "find_assoc() has returned expired handle"); | ||
149 | p["assoc_handle"] = ah; | 147 | p["assoc_handle"] = ah; |
150 | }catch(failed_lookup& fl) { | 148 | }catch(failed_lookup& fl) { |
151 | string ah = associate(server)->handle(); | 149 | string ah = associate(server)->handle(); |
152 | p["assoc_handle"] = ah; | 150 | p["assoc_handle"] = ah; |
153 | } | 151 | } |
154 | if(ext) ext->checkid_hook(p,identity); | 152 | if(ext) ext->checkid_hook(p,identity); |
155 | return p.append_query(server); | 153 | return p.append_query(server); |
156 | } | 154 | } |
157 | 155 | ||
158 | void consumer_t::id_res(const params_t& pin,const string& identity,extension_t *ext) { | 156 | void consumer_t::id_res(const params_t& pin,const string& identity,extension_t *ext) { |
159 | if(pin.has_param("openid.user_setup_url")) | 157 | if(pin.has_param("openid.user_setup_url")) |
160 | throw id_res_setup(OPKELE_CP_ "assertion failed, setup url provided",pin.get_param("openid.user_setup_url")); | 158 | throw id_res_setup(OPKELE_CP_ "assertion failed, setup url provided",pin.get_param("openid.user_setup_url")); |
161 | string server,delegate; | 159 | string server,delegate; |
162 | retrieve_links(identity.empty()?pin.get_param("openid.identity"):canonicalize(identity),server,delegate); | 160 | retrieve_links(identity.empty()?pin.get_param("openid.identity"):canonicalize(identity),server,delegate); |
163 | params_t ps; | 161 | params_t ps; |
164 | try { | 162 | try { |
165 | assoc_t assoc = retrieve_assoc(server,pin.get_param("openid.assoc_handle")); | 163 | assoc_t assoc = retrieve_assoc(server,pin.get_param("openid.assoc_handle")); |
166 | if(assoc->is_expired()) /* TODO: or should I throw some other exception to force programmer fix his implementation? */ | 164 | if(assoc->is_expired()) /* TODO: or should I throw some other exception to force programmer fix his implementation? */ |
167 | throw failed_lookup(OPKELE_CP_ "retrieve_assoc() has returned expired handle"); | 165 | throw failed_lookup(OPKELE_CP_ "retrieve_assoc() has returned expired handle"); |
168 | const string& sigenc = pin.get_param("openid.sig"); | 166 | const string& sigenc = pin.get_param("openid.sig"); |
169 | vector<unsigned char> sig; | 167 | vector<unsigned char> sig; |
170 | util::decode_base64(sigenc,sig); | 168 | util::decode_base64(sigenc,sig); |
171 | const string& slist = pin.get_param("openid.signed"); | 169 | const string& slist = pin.get_param("openid.signed"); |
172 | string kv; | 170 | string kv; |
173 | string::size_type p = 0; | 171 | string::size_type p = 0; |
174 | while(true) { | 172 | while(true) { |
175 | string::size_type co = slist.find(',',p); | 173 | string::size_type co = slist.find(',',p); |
176 | string f = (co==string::npos)?slist.substr(p):slist.substr(p,co-p); | 174 | string f = (co==string::npos)?slist.substr(p):slist.substr(p,co-p); |
177 | kv += f; | 175 | kv += f; |
178 | kv += ':'; | 176 | kv += ':'; |
179 | f.insert(0,"openid."); | 177 | f.insert(0,"openid."); |
180 | kv += pin.get_param(f); | 178 | kv += pin.get_param(f); |
181 | kv += '\n'; | 179 | kv += '\n'; |
182 | if(ext) ps[f.substr(sizeof("openid.")-1)] = pin.get_param(f); | 180 | if(ext) ps[f.substr(sizeof("openid.")-1)] = pin.get_param(f); |
183 | if(co==string::npos) | 181 | if(co==string::npos) |
184 | break; | 182 | break; |
185 | p = co+1; | 183 | p = co+1; |
186 | } | 184 | } |
187 | secret_t secret = assoc->secret(); | 185 | secret_t secret = assoc->secret(); |
188 | unsigned int md_len = 0; | 186 | unsigned int md_len = 0; |
189 | unsigned char *md = HMAC( | 187 | unsigned char *md = HMAC( |
190 | EVP_sha1(), | 188 | EVP_sha1(), |
191 | &(secret.front()),secret.size(), | 189 | &(secret.front()),secret.size(), |
192 | (const unsigned char *)kv.data(),kv.length(), | 190 | (const unsigned char *)kv.data(),kv.length(), |
193 | 0,&md_len); | 191 | 0,&md_len); |
194 | if(sig.size()!=md_len || memcmp(&(sig.front()),md,md_len)) | 192 | if(sig.size()!=md_len || memcmp(&(sig.front()),md,md_len)) |
195 | throw id_res_mismatch(OPKELE_CP_ "signature mismatch"); | 193 | throw id_res_mismatch(OPKELE_CP_ "signature mismatch"); |
196 | }catch(failed_lookup& e) { /* XXX: more specific? */ | 194 | }catch(failed_lookup& e) { /* XXX: more specific? */ |
197 | const string& slist = pin.get_param("openid.signed"); | 195 | const string& slist = pin.get_param("openid.signed"); |
198 | string::size_type pp = 0; | 196 | string::size_type pp = 0; |
199 | params_t p; | 197 | params_t p; |
200 | while(true) { | 198 | while(true) { |
201 | string::size_type co = slist.find(',',pp); | 199 | string::size_type co = slist.find(',',pp); |
202 | string f = "openid."; | 200 | string f = "openid."; |
203 | f += (co==string::npos)?slist.substr(pp):slist.substr(pp,co-pp); | 201 | f += (co==string::npos)?slist.substr(pp):slist.substr(pp,co-pp); |
204 | p[f] = pin.get_param(f); | 202 | p[f] = pin.get_param(f); |
205 | if(co==string::npos) | 203 | if(co==string::npos) |
206 | break; | 204 | break; |
207 | pp = co+1; | 205 | pp = co+1; |
208 | } | 206 | } |
209 | p["openid.assoc_handle"] = pin.get_param("openid.assoc_handle"); | 207 | p["openid.assoc_handle"] = pin.get_param("openid.assoc_handle"); |
210 | p["openid.sig"] = pin.get_param("openid.sig"); | 208 | p["openid.sig"] = pin.get_param("openid.sig"); |
211 | p["openid.signed"] = pin.get_param("openid.signed"); | 209 | p["openid.signed"] = pin.get_param("openid.signed"); |
212 | try { | 210 | try { |