-rw-r--r-- | lib/openid_message.cc | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/openid_message.cc b/lib/openid_message.cc index 4b9179b..e244f43 100644 --- a/lib/openid_message.cc +++ b/lib/openid_message.cc | |||
@@ -1,273 +1,276 @@ | |||
1 | #include <cassert> | 1 | #include <cassert> |
2 | #include <opkele/types.h> | 2 | #include <opkele/types.h> |
3 | #include <opkele/exception.h> | 3 | #include <opkele/exception.h> |
4 | #include <opkele/util.h> | 4 | #include <opkele/util.h> |
5 | #include <opkele/debug.h> | 5 | #include <opkele/debug.h> |
6 | 6 | ||
7 | #include "config.h" | 7 | #include "config.h" |
8 | 8 | ||
9 | namespace opkele { | 9 | namespace opkele { |
10 | using std::input_iterator_tag; | 10 | using std::input_iterator_tag; |
11 | using std::unary_function; | 11 | using std::unary_function; |
12 | 12 | ||
13 | struct __om_copier : public unary_function<const string&,void> { | 13 | struct __om_copier : public unary_function<const string&,void> { |
14 | public: | 14 | public: |
15 | const basic_openid_message& from; | 15 | const basic_openid_message& from; |
16 | basic_openid_message& to; | 16 | basic_openid_message& to; |
17 | 17 | ||
18 | __om_copier(basic_openid_message& t,const basic_openid_message& f) | 18 | __om_copier(basic_openid_message& t,const basic_openid_message& f) |
19 | : from(f), to(t) { | 19 | : from(f), to(t) { } |
20 | to.reset_fields(); | ||
21 | } | ||
22 | 20 | ||
23 | result_type operator()(argument_type f) { | 21 | result_type operator()(argument_type f) { |
24 | to.set_field(f,from.get_field(f)); } | 22 | to.set_field(f,from.get_field(f)); } |
25 | }; | 23 | }; |
26 | 24 | ||
27 | basic_openid_message::basic_openid_message(const basic_openid_message& x) { | 25 | basic_openid_message::basic_openid_message(const basic_openid_message& x) { |
28 | x.copy_to(*this); | 26 | x.copy_to(*this); |
29 | } | 27 | } |
30 | void basic_openid_message::copy_to(basic_openid_message& x) const { | 28 | void basic_openid_message::copy_to(basic_openid_message& x) const { |
29 | x.reset_fields(); | ||
30 | for_each(fields_begin(),fields_end(), | ||
31 | __om_copier(x,*this) ); | ||
32 | } | ||
33 | void basic_openid_message::append_to(basic_openid_message& x) const { | ||
31 | for_each(fields_begin(),fields_end(), | 34 | for_each(fields_begin(),fields_end(), |
32 | __om_copier(x,*this) ); | 35 | __om_copier(x,*this) ); |
33 | } | 36 | } |
34 | 37 | ||
35 | struct __om_ns_finder : public unary_function<const string&,bool> { | 38 | struct __om_ns_finder : public unary_function<const string&,bool> { |
36 | public: | 39 | public: |
37 | const basic_openid_message& om; | 40 | const basic_openid_message& om; |
38 | const string& uri; | 41 | const string& uri; |
39 | 42 | ||
40 | __om_ns_finder(const basic_openid_message& m, | 43 | __om_ns_finder(const basic_openid_message& m, |
41 | const string& u) : om(m), uri(u) { } | 44 | const string& u) : om(m), uri(u) { } |
42 | 45 | ||
43 | result_type operator()(argument_type f) { | 46 | result_type operator()(argument_type f) { |
44 | return | 47 | return |
45 | (!strncmp(f.c_str(),"ns.",sizeof("ns.")-1)) | 48 | (!strncmp(f.c_str(),"ns.",sizeof("ns.")-1)) |
46 | && om.get_field(f)==uri ; | 49 | && om.get_field(f)==uri ; |
47 | } | 50 | } |
48 | }; | 51 | }; |
49 | 52 | ||
50 | bool basic_openid_message::has_ns(const string& uri) const { | 53 | bool basic_openid_message::has_ns(const string& uri) const { |
51 | fields_iterator ei = fields_end(); | 54 | fields_iterator ei = fields_end(); |
52 | fields_iterator i = find_if(fields_begin(),fields_end(), | 55 | fields_iterator i = find_if(fields_begin(),fields_end(), |
53 | __om_ns_finder(*this,uri)); | 56 | __om_ns_finder(*this,uri)); |
54 | return !(i==ei); | 57 | return !(i==ei); |
55 | } | 58 | } |
56 | string basic_openid_message::get_ns(const string& uri) const { | 59 | string basic_openid_message::get_ns(const string& uri) const { |
57 | fields_iterator ei = fields_end(); | 60 | fields_iterator ei = fields_end(); |
58 | fields_iterator i = find_if(fields_begin(),fields_end(), | 61 | fields_iterator i = find_if(fields_begin(),fields_end(), |
59 | __om_ns_finder(*this,uri)); | 62 | __om_ns_finder(*this,uri)); |
60 | if(i==ei) | 63 | if(i==ei) |
61 | throw failed_lookup(OPKELE_CP_ string("failed to find namespace ")+uri); | 64 | throw failed_lookup(OPKELE_CP_ string("failed to find namespace ")+uri); |
62 | return i->substr(3); | 65 | return i->substr(3); |
63 | } | 66 | } |
64 | 67 | ||
65 | struct __om_query_builder : public unary_function<const string&,void> { | 68 | struct __om_query_builder : public unary_function<const string&,void> { |
66 | public: | 69 | public: |
67 | const basic_openid_message& om; | 70 | const basic_openid_message& om; |
68 | bool first; | 71 | bool first; |
69 | string& rv; | 72 | string& rv; |
70 | const char *pfx; | 73 | const char *pfx; |
71 | 74 | ||
72 | __om_query_builder(const char *p,string& r,const basic_openid_message& m) | 75 | __om_query_builder(const char *p,string& r,const basic_openid_message& m) |
73 | : om(m), first(true), rv(r), pfx(p) { | 76 | : om(m), first(true), rv(r), pfx(p) { |
74 | for_each(om.fields_begin(),om.fields_end(),*this); | 77 | for_each(om.fields_begin(),om.fields_end(),*this); |
75 | } | 78 | } |
76 | __om_query_builder(const char *p,string& r,const basic_openid_message& m,const string& u) | 79 | __om_query_builder(const char *p,string& r,const basic_openid_message& m,const string& u) |
77 | : om(m), first(true), rv(r), pfx(p) { | 80 | : om(m), first(true), rv(r), pfx(p) { |
78 | rv = u; | 81 | rv = u; |
79 | if(rv.find('?')==string::npos) | 82 | if(rv.find('?')==string::npos) |
80 | rv += '?'; | 83 | rv += '?'; |
81 | else | 84 | else |
82 | first = false; | 85 | first = false; |
83 | for_each(om.fields_begin(),om.fields_end(),*this); | 86 | for_each(om.fields_begin(),om.fields_end(),*this); |
84 | } | 87 | } |
85 | 88 | ||
86 | result_type operator()(argument_type f) { | 89 | result_type operator()(argument_type f) { |
87 | if(first) | 90 | if(first) |
88 | first = false; | 91 | first = false; |
89 | else | 92 | else |
90 | rv += '&'; | 93 | rv += '&'; |
91 | if(pfx) rv += pfx; | 94 | if(pfx) rv += pfx; |
92 | rv+= f; | 95 | rv+= f; |
93 | rv += '='; | 96 | rv += '='; |
94 | rv += util::url_encode(om.get_field(f)); | 97 | rv += util::url_encode(om.get_field(f)); |
95 | } | 98 | } |
96 | }; | 99 | }; |
97 | 100 | ||
98 | string basic_openid_message::append_query(const string& url,const char *pfx) const { | 101 | string basic_openid_message::append_query(const string& url,const char *pfx) const { |
99 | string rv; | 102 | string rv; |
100 | return __om_query_builder(pfx,rv,*this,url).rv; | 103 | return __om_query_builder(pfx,rv,*this,url).rv; |
101 | } | 104 | } |
102 | string basic_openid_message::query_string(const char *pfx) const { | 105 | string basic_openid_message::query_string(const char *pfx) const { |
103 | string rv; | 106 | string rv; |
104 | return __om_query_builder(pfx,rv,*this).rv; | 107 | return __om_query_builder(pfx,rv,*this).rv; |
105 | } | 108 | } |
106 | 109 | ||
107 | void basic_openid_message::reset_fields() { | 110 | void basic_openid_message::reset_fields() { |
108 | throw not_implemented(OPKELE_CP_ "reset_fields() not implemented"); | 111 | throw not_implemented(OPKELE_CP_ "reset_fields() not implemented"); |
109 | } | 112 | } |
110 | void basic_openid_message::set_field(const string&,const string&) { | 113 | void basic_openid_message::set_field(const string&,const string&) { |
111 | throw not_implemented(OPKELE_CP_ "set_field() not implemented"); | 114 | throw not_implemented(OPKELE_CP_ "set_field() not implemented"); |
112 | } | 115 | } |
113 | void basic_openid_message::reset_field(const string&) { | 116 | void basic_openid_message::reset_field(const string&) { |
114 | throw not_implemented(OPKELE_CP_ "reset_field() not implemented"); | 117 | throw not_implemented(OPKELE_CP_ "reset_field() not implemented"); |
115 | } | 118 | } |
116 | 119 | ||
117 | void basic_openid_message::from_keyvalues(const string& kv) { | 120 | void basic_openid_message::from_keyvalues(const string& kv) { |
118 | reset_fields(); | 121 | reset_fields(); |
119 | string::size_type p = 0; | 122 | string::size_type p = 0; |
120 | while(true) { | 123 | while(true) { |
121 | string::size_type co = kv.find(':',p); | 124 | string::size_type co = kv.find(':',p); |
122 | if(co==string::npos) | 125 | if(co==string::npos) |
123 | break; | 126 | break; |
124 | #ifndef POSTELS_LAW | 127 | #ifndef POSTELS_LAW |
125 | string::size_type nl = kv.find('\n',co+1); | 128 | string::size_type nl = kv.find('\n',co+1); |
126 | if(nl==string::npos) | 129 | if(nl==string::npos) |
127 | throw bad_input(OPKELE_CP_ "malformed input"); | 130 | throw bad_input(OPKELE_CP_ "malformed input"); |
128 | if(nl>co) | 131 | if(nl>co) |
129 | insert(value_type(kv.substr(p,co-p),kv.substr(co+1,nl-co-1))); | 132 | insert(value_type(kv.substr(p,co-p),kv.substr(co+1,nl-co-1))); |
130 | p = nl+1; | 133 | p = nl+1; |
131 | #else /* POSTELS_LAW */ | 134 | #else /* POSTELS_LAW */ |
132 | string::size_type lb = kv.find_first_of("\r\n",co+1); | 135 | string::size_type lb = kv.find_first_of("\r\n",co+1); |
133 | if(lb==string::npos) { | 136 | if(lb==string::npos) { |
134 | set_field(kv.substr(p,co-p),kv.substr(co+1)); | 137 | set_field(kv.substr(p,co-p),kv.substr(co+1)); |
135 | break; | 138 | break; |
136 | } | 139 | } |
137 | if(lb>co) | 140 | if(lb>co) |
138 | set_field(kv.substr(p,co-p),kv.substr(co+1,lb-co-1)); | 141 | set_field(kv.substr(p,co-p),kv.substr(co+1,lb-co-1)); |
139 | string::size_type nolb = kv.find_first_not_of("\r\n",lb); | 142 | string::size_type nolb = kv.find_first_not_of("\r\n",lb); |
140 | if(nolb==string::npos) | 143 | if(nolb==string::npos) |
141 | break; | 144 | break; |
142 | p = nolb; | 145 | p = nolb; |
143 | #endif /* POSTELS_LAW */ | 146 | #endif /* POSTELS_LAW */ |
144 | } | 147 | } |
145 | } | 148 | } |
146 | 149 | ||
147 | struct __om_kv_outputter : public unary_function<const string&,void> { | 150 | struct __om_kv_outputter : public unary_function<const string&,void> { |
148 | public: | 151 | public: |
149 | const basic_openid_message& om; | 152 | const basic_openid_message& om; |
150 | ostream& os; | 153 | ostream& os; |
151 | 154 | ||
152 | __om_kv_outputter(const basic_openid_message& m,ostream& s) | 155 | __om_kv_outputter(const basic_openid_message& m,ostream& s) |
153 | : om(m), os(s) { } | 156 | : om(m), os(s) { } |
154 | 157 | ||
155 | result_type operator()(argument_type f) { | 158 | result_type operator()(argument_type f) { |
156 | os << f << ':' << om.get_field(f) << '\n'; | 159 | os << f << ':' << om.get_field(f) << '\n'; |
157 | } | 160 | } |
158 | }; | 161 | }; |
159 | 162 | ||
160 | void basic_openid_message::to_keyvalues(ostream& o) const { | 163 | void basic_openid_message::to_keyvalues(ostream& o) const { |
161 | for_each(fields_begin(),fields_end(),__om_kv_outputter(*this,o)); | 164 | for_each(fields_begin(),fields_end(),__om_kv_outputter(*this,o)); |
162 | } | 165 | } |
163 | 166 | ||
164 | struct __om_html_outputter : public unary_function<const string&,void> { | 167 | struct __om_html_outputter : public unary_function<const string&,void> { |
165 | public: | 168 | public: |
166 | const basic_openid_message& om; | 169 | const basic_openid_message& om; |
167 | ostream& os; | 170 | ostream& os; |
168 | const char *pfx; | 171 | const char *pfx; |
169 | 172 | ||
170 | __om_html_outputter(const basic_openid_message& m,ostream& s,const char *p=0) | 173 | __om_html_outputter(const basic_openid_message& m,ostream& s,const char *p=0) |
171 | : om(m), os(s), pfx(p) { } | 174 | : om(m), os(s), pfx(p) { } |
172 | 175 | ||
173 | result_type operator()(argument_type f) { | 176 | result_type operator()(argument_type f) { |
174 | os << | 177 | os << |
175 | "<input type=\"hidden\"" | 178 | "<input type=\"hidden\"" |
176 | " name=\""; | 179 | " name=\""; |
177 | if(pfx) | 180 | if(pfx) |
178 | os << util::attr_escape(pfx); | 181 | os << util::attr_escape(pfx); |
179 | os << util::attr_escape(f) << "\"" | 182 | os << util::attr_escape(f) << "\"" |
180 | " value=\"" << util::attr_escape(om.get_field(f)) << "\" />"; | 183 | " value=\"" << util::attr_escape(om.get_field(f)) << "\" />"; |
181 | } | 184 | } |
182 | }; | 185 | }; |
183 | 186 | ||
184 | void basic_openid_message::to_htmlhiddens(ostream& o,const char* pfx) const { | 187 | void basic_openid_message::to_htmlhiddens(ostream& o,const char* pfx) const { |
185 | for_each(fields_begin(),fields_end(),__om_html_outputter(*this,o,pfx)); | 188 | for_each(fields_begin(),fields_end(),__om_html_outputter(*this,o,pfx)); |
186 | } | 189 | } |
187 | 190 | ||
188 | void basic_openid_message::add_to_signed(const string& fields) { | 191 | void basic_openid_message::add_to_signed(const string& fields) { |
189 | string::size_type fnc = fields.find_first_not_of(","); | 192 | string::size_type fnc = fields.find_first_not_of(","); |
190 | if(fnc==string::npos) | 193 | if(fnc==string::npos) |
191 | throw bad_input(OPKELE_CP_ "Trying to add nothing in particular to the list of signed fields"); | 194 | throw bad_input(OPKELE_CP_ "Trying to add nothing in particular to the list of signed fields"); |
192 | string signeds; | 195 | string signeds; |
193 | try { | 196 | try { |
194 | signeds = get_field("signed"); | 197 | signeds = get_field("signed"); |
195 | string::size_type lnc = signeds.find_last_not_of(","); | 198 | string::size_type lnc = signeds.find_last_not_of(","); |
196 | if(lnc==string::npos) | 199 | if(lnc==string::npos) |
197 | signeds.assign(fields,fnc,fields.size()-fnc); | 200 | signeds.assign(fields,fnc,fields.size()-fnc); |
198 | else{ | 201 | else{ |
199 | string::size_type ss = signeds.size(); | 202 | string::size_type ss = signeds.size(); |
200 | if(lnc==(ss-1)) { | 203 | if(lnc==(ss-1)) { |
201 | signeds+= ','; | 204 | signeds+= ','; |
202 | signeds.append(fields,fnc,fields.size()-fnc); | 205 | signeds.append(fields,fnc,fields.size()-fnc); |
203 | }else{ | 206 | }else{ |
204 | if(lnc<(ss-2)) | 207 | if(lnc<(ss-2)) |
205 | signeds.replace(lnc+2,ss-lnc-2, | 208 | signeds.replace(lnc+2,ss-lnc-2, |
206 | fields,fnc,fields.size()-fnc); | 209 | fields,fnc,fields.size()-fnc); |
207 | else | 210 | else |
208 | signeds.append(fields,fnc,fields.size()-fnc); | 211 | signeds.append(fields,fnc,fields.size()-fnc); |
209 | } | 212 | } |
210 | } | 213 | } |
211 | }catch(failed_lookup&) { | 214 | }catch(failed_lookup&) { |
212 | signeds.assign(fields,fnc,fields.size()-fnc); | 215 | signeds.assign(fields,fnc,fields.size()-fnc); |
213 | } | 216 | } |
214 | set_field("signed",signeds); | 217 | set_field("signed",signeds); |
215 | } | 218 | } |
216 | 219 | ||
217 | string basic_openid_message::find_ns(const string& uri,const char *pfx) const { | 220 | string basic_openid_message::find_ns(const string& uri,const char *pfx) const { |
218 | try { | 221 | try { |
219 | return get_ns(uri); | 222 | return get_ns(uri); |
220 | }catch(failed_lookup&) { | 223 | }catch(failed_lookup&) { |
221 | return pfx; | 224 | return pfx; |
222 | } | 225 | } |
223 | } | 226 | } |
224 | string basic_openid_message::allocate_ns(const string& uri,const char *pfx) { | 227 | string basic_openid_message::allocate_ns(const string& uri,const char *pfx) { |
225 | if(!has_field("ns")) | 228 | if(!has_field("ns")) |
226 | return pfx; | 229 | return pfx; |
227 | if(has_ns(uri)) | 230 | if(has_ns(uri)) |
228 | throw bad_input(OPKELE_CP_ "OpenID message already contains namespace"); | 231 | throw bad_input(OPKELE_CP_ "OpenID message already contains namespace"); |
229 | string rv = pfx; | 232 | string rv = pfx; |
230 | if(has_field("ns."+rv)) { | 233 | if(has_field("ns."+rv)) { |
231 | string::reference c=rv[rv.length()]; | 234 | string::reference c=rv[rv.length()]; |
232 | for(c='a';c<='z' && has_field("ns."+rv);++c); | 235 | for(c='a';c<='z' && has_field("ns."+rv);++c); |
233 | if(c=='z') | 236 | if(c=='z') |
234 | throw exception(OPKELE_CP_ "Failed to allocate namespace"); | 237 | throw exception(OPKELE_CP_ "Failed to allocate namespace"); |
235 | } | 238 | } |
236 | set_field("ns."+rv,uri); | 239 | set_field("ns."+rv,uri); |
237 | return rv; | 240 | return rv; |
238 | } | 241 | } |
239 | 242 | ||
240 | void openid_message_t::copy_to(basic_openid_message& x) const { | 243 | void openid_message_t::copy_to(basic_openid_message& x) const { |
241 | x.reset_fields(); | 244 | x.reset_fields(); |
242 | for(const_iterator i=begin();i!=end();++i) | 245 | for(const_iterator i=begin();i!=end();++i) |
243 | x.set_field(i->first,i->second); | 246 | x.set_field(i->first,i->second); |
244 | } | 247 | } |
245 | 248 | ||
246 | bool openid_message_t::has_field(const string& n) const { | 249 | bool openid_message_t::has_field(const string& n) const { |
247 | return find(n)!=end(); | 250 | return find(n)!=end(); |
248 | } | 251 | } |
249 | const string& openid_message_t::get_field(const string& n) const { | 252 | const string& openid_message_t::get_field(const string& n) const { |
250 | const_iterator i=find(n); | 253 | const_iterator i=find(n); |
251 | if(i==end()) | 254 | if(i==end()) |
252 | throw failed_lookup(OPKELE_CP_ n+": no such field"); | 255 | throw failed_lookup(OPKELE_CP_ n+": no such field"); |
253 | return i->second; | 256 | return i->second; |
254 | } | 257 | } |
255 | 258 | ||
256 | openid_message_t::fields_iterator openid_message_t::fields_begin() const { | 259 | openid_message_t::fields_iterator openid_message_t::fields_begin() const { |
257 | return util::map_keys_iterator<const_iterator,string,const string&,const string*>(begin(),end()); | 260 | return util::map_keys_iterator<const_iterator,string,const string&,const string*>(begin(),end()); |
258 | } | 261 | } |
259 | openid_message_t::fields_iterator openid_message_t::fields_end() const { | 262 | openid_message_t::fields_iterator openid_message_t::fields_end() const { |
260 | return util::map_keys_iterator<const_iterator,string,const string&,const string*>(end(),end()); | 263 | return util::map_keys_iterator<const_iterator,string,const string&,const string*>(end(),end()); |
261 | } | 264 | } |
262 | 265 | ||
263 | void openid_message_t::reset_fields() { | 266 | void openid_message_t::reset_fields() { |
264 | clear(); | 267 | clear(); |
265 | } | 268 | } |
266 | void openid_message_t::set_field(const string& n,const string& v) { | 269 | void openid_message_t::set_field(const string& n,const string& v) { |
267 | (*this)[n]=v; | 270 | (*this)[n]=v; |
268 | } | 271 | } |
269 | void openid_message_t::reset_field(const string& n) { | 272 | void openid_message_t::reset_field(const string& n) { |
270 | erase(n); | 273 | erase(n); |
271 | } | 274 | } |
272 | 275 | ||
273 | } | 276 | } |