W3C

The use of Metadata in URIs

DRAFT TAG Finding 1 October 2006

This version:
http://www.w3.org/2001/tag/doc/metaDataInURI-31-20061001.html
Latest version:
http://www.w3.org/2001/tag/doc/metaDataInURI-31 ( XML )
Previous versions:
Unapproved Editors Drafts: http://www.w3.org/2001/tag/doc/metaDataInURI-31-20061016.html , http://www.w3.org/2001/tag/doc/metaDataInURI-31-20060609.html , http://www.w3.org/2001/tag/doc/metaDataInURI-31-20060511.html, http://www.w3.org/2001/tag/doc/metaDataInURI-31-20030708.html, http://www.w3.org/2001/tag/doc/metaDataInURI-31-20030704.html (W3C Member-only)
Editors:
Noah Mendelsohn <noah_mendelsohn@us.ibm.com>
Stuart Williams <skw@hp.com>

Abstract

Status of this Document

Editors DRAFT

This document has been developed for discussion by the W3C Technical Architecture Group. This finding addresses the TAG issue metadataInURI-31.

The content of this document is intended for discussion and does NOT necessarily represent a consensus position of the TAG. The previous draft of this finding was discussed at the TAG teleconference of 19 September 2006. At that meeting, it was agreed to draft one additional section on malicious use of misleading metadata in URIs. This version contains an initial draft of that section, as well as a few other minor corrections.

An informal guide to previous discussion of this topic is available and may be useful to reviewers of this draft.

The terms MUST, MUST NOT, SHOULD, and SHOULD NOT are used in this document in accordance with [RFC2119].

Publication of this finding does not imply endorsement by the W3C Membership. This is a draft document and may be updated, replaced or obsoleted by other documents at any time.

Additional TAG findings, both approved and in draft state, may also be available.

Please send comments on this finding to the publicly archived TAG mailing list www-tag@w3.org (archive).

Table of Contents

1 Introduction
2 Encoding and using metadata in URIs
    2.1 Reliability of URI metadata
    2.2 Guessing information from a URI
    2.3 HTML Forms, and Documenting Metadata Assignment Policies
    2.4 Authority use of URI metadata
    2.5 URIs that are convenient for people to use
    2.6 Changing metadata
    2.7 Hiding metadata for security reasons
    2.8 Malicious metadata
3 Conclusions
4 References


1 Introduction

Web-based software uses URIs to designate resources. The authority who creates a URI is responsible for assuring that it is associated with the intended resource, and that operations targeted to the URI manipulate or return the appropriate data. Many URI schemes offer a flexible structure that can also be used to carry additional information, called metadata, about the resource. Such metadata might include the title of a document, the creation date of the resource, the MIME media type that is likely to be returned by an HTTP GET, a digital signature usable to verify the integrity or authorship of the resource content, or hints about URI assignment policies that would allow one to guess the URIs for related resources.

This finding addresses several questions regarding such metadata in URIs:

  1. What information about a resource can or should be embedded in its URI?

  2. What metadata can be reliably determined from a URI, and in what circumstances is it appropriate to rely on the correctness of such information?

  3. In what circumstances is it appropriate to use information from a URI as a hint as to the nature of a resource or its representations?

The first question is primarily of concern to URI assignment authorities, who must choose a suitable URI for each resource they control. The other questions are focused on people and software making use of URIs, whether at the resource authority or elsewhere. Of course, the questions are related insofar as one reason for an authority to encode metadata is for the benefit of resource users.

The TAG has earlier published a finding Authoritative Metadata [AUTHMETA], which explains how to determine correct metadata in cases where conflicting information has been provided. This finding is concerned with just one possible means of determining resource metadata, i.e. from the URI itself. The TAG publication [AWWW] discusses related issues under the heading of URI Opacity; this finding provides additional detail and guidance on the encoding of metadata into URIs, and on when it is or isn't appropriate to attempt to infer metadata from a URI.

2 Encoding and using metadata in URIs

This section uses simple examples to illustrate some issues that arise when encoding metadata in URIs, or when relying on information gleaned from such URIs. Good Practice Notes are provided to explain how to use the Web effectively, and Constraints are given where necessary for using the Web correctly. As these examples show, encoding or not encoding metadata in a URI or deciding whether to rely on such metadata is often a tradeoff, involving some benefits and some costs. In such cases, choices should be made that best meet the needs of particular resource providers and users.

2.1 Reliability of URI metadata

Consider Martin, who is using a Web-based bug tracking system to investigate some software problems. He sees a bug report which says:

"See http://example.org/bugdata/brokenfile.xml for an example of XML that is not well-formed."

The bug tracking system is built to show examples just as they are entered into the system, so for http://example.org/bugdata/brokenfile.xml it returns a stream of (poorly formed) XML with Content-Type text/plain. That Content-Type should cause a properly configured browser to show Martin the erroneous text just as it was recorded:

<?xml version="1.0">
<PetList>
  <Dog>Rover</Dog>
  <Cat>Felix</Fish>
</PetList>

Unfortunately, Martin uses a browser that incorrectly attempts to infer the format of the returned data from the URI suffix. Keying on the ".xml" in the URI, it launches an XML renderer for what should have been plain text. When Martin attempts to view the faulty file, he sees instead a browser error saying that the erroneous XML could not be displayed.

Constraint

Constraint: Web software MUST NOT depend on the correctness of metadata inferred from a URI, except when the encoding of such metadata is documented by applicable standards and specifications.

Such standards and specifications include pertinent Web and Internet RFCs and Recommendations such as [URI], as well as documentation provided by the URI assignment authority.

Martin's browser is in error because its inference that the URI suffix provides file type metadata is not provided for by normative Web specifications or, we may assume, in documentation from the assignment authority. A correctly written browser would have shown the faulty XML as text, or might conceivably have shown a warning about the apparent mismatch between the type inferred from the URI and the returned Content-Type. (Martin's browser is also ignoring TAG finding "Authoritative Metadata" [AUTHMETA], which mandates that the Content-Type HTTP header takes precedence even if type information had somehow been reliably encoded in the URI.)

Note that the constraint refers to conclusions drawn by software, which must be trustworthy, as opposed to guesses made by people. As discussed in 2.2 Guessing information from a URI, guessing is something that people using the Web do quite often and for good reason. Software tends to be long lived and widely distributed. Thus software dependencies on undocumented URI metadata result not only in buggy systems, but in inappropriate expectations that authorities will constrain their URI assignment policies and representation types to match dependencies in the clients. For both of these reasons, the constraint above requires that software must not have such dependencies.

There is certain metadata that Martin or his browser can reliably determine from the URI. For example, the URI conveys that the http scheme has been used, and that attempts to access the resource should be directed to the IP address returned from the DNS resolution of the string "example.org". These conclusions are supported by normative specifications such as [URI] and [HTTP].

2.2 Guessing information from a URI

Bob is walking down a street, and he sees an advertisement on the side of a bus:

"For the best Chicago Weather information on the Web, visit http://example.org/weather/Chicago."

Bob goes home and types the URI into his browser, which does indeed display for him a Chicago weather forecast. Bob then realizes that he'll be visiting Boston, and he guesses that a Boston weather page might be available at a similar URI:

Bob guesses the Boston weather might be found at "http://example.org/weather/Boston".

He types that into his browser and reads the response that comes back.

Bob is using the original URI for more than its intended purpose, which is to identify the Chicago weather page. Instead, he's inferring from it information about the structure of a Web site that, he guesses, might use a uniform naming convention for the weather in lots of cities. So, when Bob tries the Boston URI, he has to be prepared for the possibility that his guess will prove wrong: Web architecture does not guarantee that the retrieved page, if there is one, has the weather for Boston, or indeed that it contains any weather report at all. Even if it does, there is no assurance that it is current weather, that it is intended for reliable use by consumers, etc. Bob has seen an advertisement listing just the Chicago URI, and that is the only one that the URI authority has warranted will be a useful weather report.

Still, the ability to explore the Web informally and experimentally is very valuable, and Web users act on such guesses about URIs all the time. Many authorities facilitate such flexible use of the Web by assigning URIs in an orderly and predictable manner. Nonetheless, in the example above, Bob is responsible for determining whether the information returned is indeed what he needs.

Good Practice

Good Practice: Guess information from URIs only when the consequences of an incorrect guess are acceptable.

2.3 HTML Forms, and Documenting Metadata Assignment Policies

Bob would not have had to guess the Boston weather URI if the authority had documented its URI assignment policy. Assignment authorities have no obligation to provide such documentation, but it can be a useful way of advertising in bulk the URIs for a collection of related resources. For example, an advertisement might read:

"For the best weather information for your city, visit http://example.org/weather/your-city-name-here."

Reading that advertisement, Bob can reasonably assume that weather reports are available by substituting specific city names into the URI pattern http://example.org/weather/your-city-name-here. Moreover, the advertisement claims that the weather information obtainable at those URIs is "the best", so Bob can assume that the weather reports are trustworthy and current.

HTML forms [HTMLForms] and now XForms [XFORMS] each provide a means by which an authority can assert its support for a class of parameterized URIs, while simultaneously programming Web clients to prompt for the necessary parameters. For example, a Web site http://example.org/weatherfinder might offer a city lookup page containing the following HTML form fragment:

<FORM ACTION="http://example.org/cityweather" METHOD="GET">
  For what city would you like a weather report: 
  <INPUT TYPE="TEXT" NAME="city">?
  <INPUT TYPE="SUBMIT" VALUE="Get the weather">
</FORM>

A browser receiving this form, or Bob if he views the source of the form, is assured that the assigning authority is supporting an entire class of URIs of the form:

http://example.org/cityweather?city=CityName

The same HTML Form is also a computer program, executable by the browser, that prompts for and retrieves representations for all such URIs, and the English text in the form assures Bob that these are indeed for weather reports. Bob is not guessing the encoding of the URI or the nature of the resources referenced — he is acting on authoritative information provided by the assignor of the URIs. He can assume not just that he will get weather reports for certain cities, but that no URIs in the class correspond to anything other than weather reports (though some may correspond to no resource at all). Bob could, with this assurance, write his own software to construct and use such URIs to retrieve weather reports. Of course, the typical Web user would neither directly inspect the URIs nor write software to build them, but would instead type in city names and push the handy "Get the weather" button on his or her browser screen.

Note that the example carefully specifies that the HTML form is sourced from the same authority as the individual weather URIs that the form queries. In fact, it is also common for the ACTION attributes in HTML forms to refer to URIs from other authorities. In such cases, it is the provider of the form rather than the assigning authority for the queried URIs who is responsible for the claims made in the form. In particular, users (and software) should check the origin of HTML forms before depending on the URI assignment patterns that they appear to imply. Of course, you can always use such a form to perform a query and see what comes back; what you can't do is blame the assignment authority if the generated URIs either don't resolve (status code 404) or return representations that don't match the expectations established when reading the form (you got a football score instead of a weather report).

2.4 Authority use of URI metadata

In the examples in 2.3 HTML Forms, and Documenting Metadata Assignment Policies above, resource metadata (I.e. the city associated with each resource) was encoded into URIs primarily for the benefit of users such as Bob, or to facilitate use of the HTML Forms or XForms acting on those users' behalf.

Often, metadata is encoded into a URI not primarily for the benefit of users, but to facilitate management of the resources themselves. For example, assume that the administrators at example.org have established a policy of assigning URIs based on the media types of representations: all GIF images are named with URIs ending in ".gif", and all JPEG images are named with URIs ending in ".jpeg", and so on. Although 2.1 Reliability of URI metadata warned that users of a resource cannot rely on undocumented naming conventions to determine media types and other information about a resource, the owner of a resource controls such naming and can depend on it. Example.org may therefore rely on their policy in an Apache Web Server .htaccess file, which causes the correct media type to be served automatically for each resource:

<Files ~ ".*\.gif">
  ForceType 'image/gif'
</Files>
<Files ~ ".*\.jpg">
  ForceType 'image/jpeg'
</Files>

Even if it does not document this policy publicly, example.org's own Web servers can safely depend on it.

Good Practice

Good Practice: URI assignment authorities and the Web servers deployed for them may benefit from an orderly mapping from resource metadata into URIs.

In addition to filename-based conventions, authorities may choose to base URIs on database keys, customer identifiers, or other information that makes it easy to associate a URI with information pertinent to the corresponding resource. Such encodings are both useful and common on the Web, but there can also be drawbacks to including such information in URIs. Some of those problems are discussed in the three sections immediately below.

2.5 URIs that are convenient for people to use

URIs optimized for use by the assignment authority may sometimes be inconvenient for resource users. Consider Mary who is walking down the street, and who sees the same weather advertisement as Bob:

"For the best Chicago Weather information on the Web, visit http://example.org/weather/Chicago."

Like Bob, Mary is pleased to learn about a valuable Web site, and she finds that the URI itself is quite easy to both to remember and to type into her browser. This is because, in addition to the required scheme and authority components, the URI is based on the word weather and the city name Chicago, both of which fit her expectations for this resource.

The next day, Mary sees another advertisement reading:

"For the best Atlanta Weather information on the Web, visit http://example.org/123Hx67v4gZ5234Bq5rZ."

Mary is annoyed, because the URI is both difficult to remember and hard to transcribe accurately. She guesses that the authority has assigned this URI for its own convenience (see 2.4 Authority use of URI metadata) rather than for hers. Although Web architecture does not require that URIs be easy to understand or suggestive of the resource named, it's handy if those intended for direct use by people are.

Good Practice

Good Practice: URIs intended for direct use by people should be easy to understand, and should be suggestive of the resource actually named.

Note that the second URI might be based on a database key that facilitates efficient access to the weather data at the server (see 2.4 Authority use of URI metadata); such a URI might have been a good choice if it were intended only for use in HTML hyperlinks, rather than in an advertisement on the side of a bus.

2.6 Changing metadata

URIs should generally not encode metadata that will change, regardless of whether the encoding policy is established to benefit URI assignment authorities, resource users, or both. Consider a web site that organizes document URIs according to the documents' lead author or editor. Thus, the documents:

http://example.org/documents/editor/BobSmith/document1
http://example.org/documents/editor/BobSmith/document2

are named for their editor, Bob Smith. Bob retires, and Mary Jones takes over as editor for document1. If the URI is changed to encode her name, then existing links break, but if the URI is not changed, the naming policy is violated. By encoding into the URI metadata that will change, the authority has put itself in a difficult position.

Good Practice

Good Practice: Resource metadata that will change SHOULD NOT be encoded in a URI.

Indeed, RDF statements about the resource, headers returned with representations (e.g. Content-Type) or metadata embedded in the representations themselves (e.g. HTML <META> tags) are all better alternatives for conveying such volatile metadata about the resource.

2.7 Hiding metadata for security reasons

A bank establishes a URI assignment policy in which account numbers are encoded directly in the URI. For example, the URI http://example.org/customeraccounts/456123 accesses information for account number 456123. A malicious worker at an Internet Service Provider notices these URIs in his traffic logs, and determines the bank account numbers for his Internet customers. Furthermore, if access controls are not properly in place, he might be able to guess the URIs for other accounts, and to attempt to access them.

Good Practice

Good Practice: URI assignment authorities SHOULD NOT put into URIs metadata that is to be kept confidential.

2.8 Malicious metadata

Bob wants to find pictures of his favorite movie star, and he goes looking on the Web. He is worried though, because has heard that some web sites may try to damage his computer, so Bob tries to be careful. In particular, he inspects each URI in his browser's status bar before following links to the pictures. One URI he sees is:

http://example.org/BigStar.jpeg

Knowing that JPEG images are usually safe to view, Bob follows the link. Unfortunately, the Web site is indeed malicious, and the file served for that URI is a program of media type application/octet-stream, not the expected image/jpeg. Bob's browser runs the program, which installs a variety of undesirable software on his machine.

The malicious Web site has not in fact violated any normative specifications, but destructive behavior is always a misuse of the Web. Thus, the primary fault in this scenario rests with the web site administrators who served an executable that was intended to damage Bob's machine, and which was named with a URI designed to mislead users. In practice, suffixes of URIs are often used to encode the type of a resource or its representation, and users know that. Users therefore have expectations for the content associated such URIs, whether or not those expectations are supported by normative specifications. URIs ending in the four characters ".jpeg" are indeed conventionally used to serve representations of media type image/jpeg, even though no normative specification provides for such a correspondence, and even though there may over time be reasons to serve alternative representations for those same URIs. Such correspondences are convenient for a variety of reasons, and users (and, unfortunately, much Web software that's been deployed in error) are tempted to rely on them.

A user like Bob might wish for a browser that would quietly reject content that did not conform to his expectations for URI assignment. Unfortunately, for the reasons explained in 2.1 Reliability of URI metadata and also "Authoritative Metadata" [AUTHMETA], such an agent would be damaging to the Web, and would in particular violate the constraint against depending on undocumented metadata. So, in cases where there has been a violation of common practice rather than of normative specifications, user agents must strike a sometimes difficult balance between warning of danger and unduly constraining the operation of the Web. Ideally, such warnings should be visible enough to attract the attention of those likely to be hurt by malicious or unexpected content, yet sufficiently unobtrusive as to not be inconvenient in cases where no error has actually occurred. Particular user agents may be tailored according to the needs of particular groups of users or the devices on which they run, but in no case should a user agent unconditionally reject content that is correct, except if specifically configured to do so by a user.

Note that in the particular case of executable content, as in this example, many browsers do issue warnings regardless of the particular URI used for retrieval. This is because even executables named with obvious URIs such as http://example.org/myprogram.exe can be malicious. Such warnings regarding executables are useful, and if Bob had employed such a browser he might have avoided damaging his machine. Such URI-independent warnings are, however, beyond the scope of this finding, which is concerned specifically with inferences that Bob or his browser make from the URI itself.

3 Conclusions

The principle conclusions of this finding are:

4 References

AUTHMETA
"Authoritative Metadata"; W3C; TAG Finding; R.T. Fielding, I.Jacobs; April 2006 (See http://www.w3.org/2001/tag/doc/mime-respect.)
AWWW
I.Jacobs, N. Walsh, Architecture of the World Wide Web. W3C. December, 2004. (See http://www.w3.org/TR/webarch/.)
HTTP
"Hypertext Transfer Protocol - HTTP/1.1"; IETF; RFC 2616; R. Fielding, J. Gettys, J. Mogul, H. Frystyk, P. Leach, L. Masinter, T. Berners-Lee; June 1999 (See http://www.iana.org/rfc/rfc2616.)
HTMLFORMS
"HTML 4.01 Specification (Forms Chapter)"; W3C; D. Raggett, A. Le Hors, I. Jacobs; December 1999 (See http://www.w3.org/TR/html4/interact/forms.html.)
RFC2119
S. Bradner. Key words for use in RFCs to Indicate Requirement Levels. IETF. March, 1997. (See http://www.ietf.org/rfc/rfc2119.txt.)
URI
"Uniform Resource Identifiers (URI): Generic Syntax"; RFC3986; IETF; T. Berners-Lee, R. Fielding, L. Masinter; August 1998 (See http://www.ietf.org/rfc/rfc3986.)
XFORMS
"XForms 1.0"; W3C; J.M. Boyer, D. Landwehr, R. Merrick, T. V. Raman, M. Dubinko, L. Klotz ; 2006 (2nd Edition) (See http://www.w3.org/TR/xforms/.)