summaryrefslogtreecommitdiffstats
path: root/source/Janrain.OpenId/Server/TrustRoot.cs
blob: 0bae0beb5bd956a335a2569c1f87ca08755db780 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
using System;
using System.Text.RegularExpressions;
using System.Diagnostics;

namespace Janrain.OpenId.Server
{
    /// <summary>
    /// A trust root to validate requests and match return URLs against.
    /// </summary>
    /// <!-- http://openid.net/specs/openid-authentication-1_1.html#anchor16 -->
    /// <!-- http://openid.net/specs/openid-authentication-1_1.html#anchor21 -->
    public class TrustRoot
    {
        #region Private Members

        private static Regex _tr_regex = new Regex("^(?<scheme>https?)://((?<wildcard>\\*)|(?<wildcard>\\*\\.)?(?<host>[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]+)*)\\.?)(:(?<port>[0-9]+))?(?<path>(/.*|$))");
        private static string[] _top_level_domains =    {"com", "edu", "gov", "int", "mil", "net", "org", "biz", "info", "name", "museum", "coop", "aero", "ac", "ad", "ae",
                                                        "af", "ag", "ai", "al", "am", "an", "ao", "aq", "ar", "as", "at", "au", "aw", "az", "ba", "bb", "bd", "be", "bf", "bg", "bh", "bi", "bj", "" +
                                                        "bm", "bn", "bo", "br", "bs", "bt", "bv", "bw", "by", "bz", "ca", "cc", "cd", "cf", "cg", "ch", "ci", "ck", "cl", "cm", "cn", "co", "cr", "" +
                                                        "cu", "cv", "cx", "cy", "cz", "de", "dj", "dk", "dm", "do", "dz", "ec", "ee", "eg", "eh", "er", "es", "et", "fi", "fj", "fk", "fm", "fo", "" +
                                                        "fr", "ga", "gd", "ge", "gf", "gg", "gh", "gi", "gl", "gm", "gn", "gp", "gq", "gr", "gs", "gt", "gu", "gw", "gy", "hk", "hm", "hn", "hr", "" +
                                                        "ht", "hu", "id", "ie", "il", "im", "in", "io", "iq", "ir", "is", "it", "je", "jm", "jo", "jp", "ke", "kg", "kh", "ki", "km", "kn", "kp", "" +
                                                        "kr", "kw", "ky", "kz", "la", "lb", "lc", "li", "lk", "lr", "ls", "lt", "lu", "lv", "ly", "ma", "mc", "md", "mg", "mh", "mk", "ml", "mm", "" +
                                                        "mn", "mo", "mp", "mq", "mr", "ms", "mt", "mu", "mv", "mw", "mx", "my", "mz", "na", "nc", "ne", "nf", "ng", "ni", "nl", "no", "np", "nr", "" +
                                                        "nu", "nz", "om", "pa", "pe", "pf", "pg", "ph", "pk", "pl", "pm", "pn", "pr", "ps", "pt", "pw", "py", "qa", "re", "ro", "ru", "rw", "sa", "" +
                                                        "sb", "sc", "sd", "se", "sg", "sh", "si", "sj", "sk", "sl", "sm", "sn", "so", "sr", "st", "sv", "sy", "sz", "tc", "td", "tf", "tg", "th", "" +
                                                        "tj", "tk", "tm", "tn", "to", "tp", "tr", "tt", "tv", "tw", "tz", "ua", "ug", "uk", "um", "us", "uy", "uz", "va", "vc", "ve", "vg", "vi", "" +
                                                        "vn", "vu", "wf", "ws", "ye", "yt", "yu", "za", "zm", "zw"};
        private string _unparsed;
        private string _scheme;
        private bool _wildcard;
        private string _host;
        private int _port;
        private string _path;

        #endregion

        #region Constructor(s)

        public TrustRoot(string unparsed)
        {
            Match mo = _tr_regex.Match(unparsed);

            if (mo.Success)
            {
                _unparsed = unparsed;
                _scheme = mo.Groups["scheme"].Value;
                _wildcard = mo.Groups["wildcard"].Value != String.Empty;
                _host = mo.Groups["host"].Value.ToLower();

                Group port_group = mo.Groups["port"];
                if (port_group.Success)
                    _port = Convert.ToInt32(port_group.Value);
                else if (_scheme == "https")
                    _port = 443;
                else
                    _port = 80;

                _path = mo.Groups["path"].Value;
                if (_path == String.Empty)
                    _path = "/";
            }
            else
            {
                throw new MalformedTrustRoot(null, unparsed + " does not appear to be a valid TrustRoot");
            }
        }

        #endregion

        #region Properties

        public bool IsSane
        {
            get
            {
                if (_host == "localhost")
                    return true;

                string[] host_parts = _host.Split('.');

                string tld = host_parts[host_parts.Length - 1];

                if (!Util.InArray(_top_level_domains, tld))
                    return false;

                if (tld.Length == 2)
                {
                    if (host_parts.Length == 1)
                        return false;

                    if (host_parts[host_parts.Length - 2].Length <= 3)
                        return host_parts.Length > 2;

                }
                else
                {
                    return host_parts.Length > 1;
                }

                return false;
            }
        }

        #endregion

        #region Methods

        /// <summary>
        /// Validates a URL against this trust root.
        /// </summary>
        /// <param name="url">A string specifying URL to check.</param>
        /// <returns>Whether the given URL is within this trust root.</returns>
        public bool ValidateUrl(string url)
        {
            Uri uri = new Uri(url);

            return ValidateUrl(uri);
        }

        /// <summary>
        /// Validates a URL against this trust root.
        /// </summary>
        /// <param name="url">The URL to check.</param>
        /// <returns>Whether the given URL is within this trust root.</returns>
        public bool ValidateUrl(Uri url)
        {
            if (url.Scheme != _scheme)
                return false;

            if (url.Port != _port)
                return false;

            if (!_wildcard)
            {
                if (url.Host != _host)
                {
                    return false;
                }
            }
            else
            {
                Debug.Assert(_host != string.Empty, "The host part of the Regex should evaluate to at least one char for successful parsed trust roots.");
                string[] host_parts = _host.Split('.');
                string[] url_parts = url.Host.Split('.');

                // If the domain contain the wildcard has more parts than the URL to match against,
                // it naturally can't be valid.
                // Unless *.example.com actually matches example.com too.
                if (host_parts.Length > url_parts.Length)
                    return false;

                int offset = url_parts.Length - host_parts.Length;

                // Compare last part first and move forward.
                // Could be done by using EndsWith, but this solution seems more elegant.
                for (int i = host_parts.Length - 1; i >= 0; i--)
                {
                    /*
                    if (host_parts[i].Equals("*", StringComparison.Ordinal))
                    {
                        break;
                    }
                     */

                    if (!host_parts[i].Equals(url_parts[i + 1], StringComparison.OrdinalIgnoreCase))
                    {
                        return false;
                    }
                }
            }

            // If path matches or is specified to root ...
            if (_path.Equals(url.PathAndQuery, StringComparison.Ordinal)
                || _path.Equals("/", StringComparison.Ordinal))
                return true;

            // If trust root has a longer path, the return URL must be invalid.
            if (_path.Length > url.PathAndQuery.Length)
                return false;

            // The following code assures that http://example.com/directory isn't below http://example.com/dir,
            // but makes sure http://example.com/dir/ectory is below http://example.com/dir
            int path_len = _path.Length;
            string url_prefix = url.PathAndQuery.Substring(0, path_len);

            if (_path != url_prefix)
                return false;

            // If trust root includes a query string ...
            if (_path.Contains("?"))
            {
                // ... make sure return URL begins with a new argument
                return url.PathAndQuery[path_len] == '&';
            }

            // Or make sure a query string is introduced or a path below trust root
            return _path.EndsWith("/", StringComparison.Ordinal)
                || url.PathAndQuery[path_len] == '?'
                || url.PathAndQuery[path_len] == '/';
        }

        #endregion
    }
}