source: trunk/docs/frontends/webapi.rst

Last change on this file was b139876, checked in by Jean-Paul Calderone <exarkun@…>, at 2021-01-25T15:52:34Z

Merge remote-tracking branch 'origin/master' into 3536.sphinx-warnings

  • Property mode set to 100644
File size: 106.1 KB
Line 
1.. -*- coding: utf-8-with-signature -*-
2
3==========================
4The Tahoe REST-ful Web API
5==========================
6
71.  `Enabling the web-API port`_
82.  `Basic Concepts: GET, PUT, DELETE, POST`_
93.  `URLs`_
10
11    1. `Child Lookup`_
12
134.  `Slow Operations, Progress, and Cancelling`_
145.  `Programmatic Operations`_
15
16    1. `Reading a file`_
17    2. `Writing/Uploading a File`_
18    3. `Creating a New Directory`_
19    4. `Getting Information About a File Or Directory (as JSON)`_
20    5. `Attaching an Existing File or Directory by its read- or write-cap`_
21    6. `Adding Multiple Files or Directories to a Parent Directory at Once`_
22    7. `Unlinking a File or Directory`_
23
246.  `Browser Operations: Human-Oriented Interfaces`_
25
26    1.  `Viewing a Directory (as HTML)`_
27    2.  `Viewing/Downloading a File`_
28    3.  `Getting Information About a File Or Directory (as HTML)`_
29    4.  `Creating a Directory`_
30    5.  `Uploading a File`_
31    6.  `Attaching an Existing File Or Directory (by URI)`_
32    7.  `Unlinking a Child`_
33    8.  `Renaming a Child`_
34    9.  `Relinking ("Moving") a Child`_
35    10. `Other Utilities`_
36    11. `Debugging and Testing Features`_
37
387.  `Other Useful Pages`_
398.  `Static Files in /public_html`_
409.  `Safety and Security Issues -- Names vs. URIs`_
4110. `Concurrency Issues`_
4211. `Access Blacklist`_
43
44
45Enabling the web-API port
46=========================
47
48Every Tahoe node is capable of running a built-in HTTP server. To enable
49this, just write a port number into the "[node]web.port" line of your node's
50tahoe.cfg file. For example, writing "web.port = 3456" into the "[node]"
51section of $NODEDIR/tahoe.cfg will cause the node to run a webserver on port
523456.
53
54This string is actually a Twisted "strports" specification, meaning you can
55get more control over the interface to which the server binds by supplying
56additional arguments. For more details, see the documentation on
57`twisted.application.strports`_.
58
59Writing "tcp:3456:interface=127.0.0.1" into the web.port line does the same
60but binds to the loopback interface, ensuring that only the programs on the
61local host can connect. Using "ssl:3456:privateKey=mykey.pem:certKey=cert.pem"
62runs an SSL server.
63
64This webport can be set when the node is created by passing a --webport
65option to the 'tahoe create-node' command. By default, the node listens on
66port 3456, on the loopback (127.0.0.1) interface.
67
68.. _twisted.application.strports: https://twistedmatrix.com/documents/current/api/twisted.application.strports.html
69
70
71Basic Concepts: GET, PUT, DELETE, POST
72======================================
73
74As described in :doc:`../architecture`, each file and directory in a
75Tahoe-LAFS file store is referenced by an identifier that combines the
76designation of the object with the authority to do something with it (such as
77read or modify the contents). This identifier is called a "read-cap" or
78"write-cap", depending upon whether it enables read-only or read-write
79access. These "caps" are also referred to as URIs (which may be confusing
80because they are not currently RFC3986_-compliant URIs).
81
82The Tahoe web-based API is "REST-ful", meaning it implements the concepts of
83"REpresentational State Transfer": the original scheme by which the World
84Wide Web was intended to work. Each object (file or directory) is referenced
85by a URL that includes the read- or write- cap. HTTP methods (GET, PUT, and
86DELETE) are used to manipulate these objects. You can think of the URL as a
87noun, and the method as a verb.
88
89In REST, the GET method is used to retrieve information about an object, or
90to retrieve some representation of the object itself. When the object is a
91file, the basic GET method will simply return the contents of that file.
92Other variations (generally implemented by adding query parameters to the
93URL) will return information about the object, such as metadata. GET
94operations are required to have no side-effects.
95
96PUT is used to upload new objects into the file store, or to replace an
97existing link or the contents of a mutable file. DELETE is used to unlink
98objects from directories. Both PUT and DELETE are required to be idempotent:
99performing the same operation multiple times must have the same side-effects
100as only performing it once.
101
102POST is used for more complicated actions that cannot be expressed as a GET,
103PUT, or DELETE. POST operations can be thought of as a method call: sending
104some message to the object referenced by the URL. In Tahoe, POST is also used
105for operations that must be triggered by an HTML form (including upload and
106unlinking), because otherwise a regular web browser has no way to accomplish
107these tasks. In general, everything that can be done with a PUT or DELETE can
108also be done with a POST.
109
110Tahoe-LAFS' web API is designed for two different kinds of consumer. The
111first is a program that needs to manipulate the file store. Such programs are
112expected to use the RESTful interface described above. The second is a human
113using a standard web browser to work with the file store. This user is
114presented with a series of HTML pages with links to download files, and forms
115that use POST actions to upload, rename, and unlink files.
116
117When an error occurs, the HTTP response code will be set to an appropriate
118400-series code (like 404 Not Found for an unknown childname, or 400 Bad Request
119when the parameters to a web-API operation are invalid), and the HTTP response
120body will usually contain a few lines of explanation as to the cause of the
121error and possible responses. Unusual exceptions may result in a 500 Internal
122Server Error as a catch-all, with a default response body containing
123a Nevow-generated HTML-ized representation of the Python exception stack trace
124that caused the problem. CLI programs which want to copy the response body to
125stderr should provide an "Accept: text/plain" header to their requests to get
126a plain text stack trace instead. If the Accept header contains ``*/*``, or
127``text/*``, or text/html (or if there is no Accept header), HTML tracebacks will
128be generated.
129
130.. _RFC3986: https://tools.ietf.org/html/rfc3986
131
132
133URLs
134====
135
136Tahoe uses a variety of read- and write- caps to identify files and
137directories. The most common of these is the "immutable file read-cap", which
138is used for most uploaded files. These read-caps look like the following::
139
140 URI:CHK:ime6pvkaxuetdfah2p2f35pe54:4btz54xk3tew6nd4y2ojpxj4m6wxjqqlwnztgre6gnjgtucd5r4a:3:10:202
141
142The next most common is a "directory write-cap", which provides both read and
143write access to a directory, and look like this::
144
145 URI:DIR2:djrdkfawoqihigoett4g6auz6a:jx5mplfpwexnoqff7y5e4zjus4lidm76dcuarpct7cckorh2dpgq
146
147There are also "directory read-caps", which start with "URI:DIR2-RO:", and
148give read-only access to a directory. Finally there are also mutable file
149read- and write- caps, which start with "URI:SSK", and give access to mutable
150files.
151
152(Later versions of Tahoe will make these strings shorter, and will remove the
153unfortunate colons, which must be escaped when these caps are embedded in
154URLs.)
155
156To refer to any Tahoe object through the web API, you simply need to combine
157a prefix (which indicates the HTTP server to use) with the cap (which
158indicates which object inside that server to access). Since the default Tahoe
159webport is 3456, the most common prefix is one that will use a local node
160listening on this port::
161
162 http://127.0.0.1:3456/uri/ + $CAP
163
164So, to access the directory named above, the URL would be::
165
166 http://127.0.0.1:3456/uri/URI%3ADIR2%3Adjrdkfawoqihigoett4g6auz6a%3Ajx5mplfpwexnoqff7y5e4zjus4lidm76dcuarpct7cckorh2dpgq/
167
168(note that the colons in the directory-cap are url-encoded into "%3A"
169sequences).
170
171Likewise, to access the file named above, use::
172
173 http://127.0.0.1:3456/uri/URI%3ACHK%3Aime6pvkaxuetdfah2p2f35pe54%3A4btz54xk3tew6nd4y2ojpxj4m6wxjqqlwnztgre6gnjgtucd5r4a%3A3%3A10%3A202
174
175In the rest of this document, we'll use "$DIRCAP" as shorthand for a read-cap
176or write-cap that refers to a directory, and "$FILECAP" to abbreviate a cap
177that refers to a file (whether mutable or immutable). So those URLs above can
178be abbreviated as::
179
180 http://127.0.0.1:3456/uri/$DIRCAP/
181 http://127.0.0.1:3456/uri/$FILECAP
182
183The operation summaries below will abbreviate these further, by eliding the
184server prefix. They will be displayed like this::
185
186 /uri/$DIRCAP/
187 /uri/$FILECAP
188
189/cap can be used as a synonym for /uri.  If interoperability with older web-API
190servers is required, /uri should be used.
191
192Child Lookup
193------------
194
195Tahoe directories contain named child entries, just like directories in a
196regular local filesystem. These child entries, called "dirnodes", consist of
197a name, metadata, a write slot, and a read slot. The write and read slots
198normally contain a write-cap and read-cap referring to the same object, which
199can be either a file or a subdirectory. The write slot may be empty
200(actually, both may be empty, but that is unusual).
201
202If you have a Tahoe URL that refers to a directory, and want to reference a
203named child inside it, just append the child name to the URL. For example, if
204our sample directory contains a file named "welcome.txt", we can refer to
205that file with::
206
207 http://127.0.0.1:3456/uri/$DIRCAP/welcome.txt
208
209(or http://127.0.0.1:3456/uri/URI%3ADIR2%3Adjrdkfawoqihigoett4g6auz6a%3Ajx5mplfpwexnoqff7y5e4zjus4lidm76dcuarpct7cckorh2dpgq/welcome.txt)
210
211Multiple levels of subdirectories can be handled this way::
212
213 http://127.0.0.1:3456/uri/$DIRCAP/tahoe-source/docs/architecture.rst
214
215In this document, when we need to refer to a URL that references a file using
216this child-of-some-directory format, we'll use the following string::
217
218 /uri/$DIRCAP/[SUBDIRS../]FILENAME
219
220The "[SUBDIRS../]" part means that there are zero or more (optional)
221subdirectory names in the middle of the URL. The "FILENAME" at the end means
222that this whole URL refers to a file of some sort, rather than to a
223directory.
224
225When we need to refer specifically to a directory in this way, we'll write::
226
227 /uri/$DIRCAP/[SUBDIRS../]SUBDIR
228
229
230Note that all components of pathnames in URLs are required to be UTF-8
231encoded, so "resume.doc" (with an acute accent on both E's) would be accessed
232with::
233
234 http://127.0.0.1:3456/uri/$DIRCAP/r%C3%A9sum%C3%A9.doc
235
236Also note that the filenames inside upload POST forms are interpreted using
237whatever character set was provided in the conventional '_charset' field, and
238defaults to UTF-8 if not otherwise specified. The JSON representation of each
239directory contains native Unicode strings. Tahoe directories are specified to
240contain Unicode filenames, and cannot contain binary strings that are not
241representable as such.
242
243All Tahoe operations that refer to existing files or directories must include
244a suitable read- or write- cap in the URL: the web-API server won't add one
245for you. If you don't know the cap, you can't access the file. This allows
246the security properties of Tahoe caps to be extended across the web-API
247interface.
248
249
250Slow Operations, Progress, and Cancelling
251=========================================
252
253Certain operations can be expected to take a long time. The "t=deep-check",
254described below, will recursively visit every file and directory reachable
255from a given starting point, which can take minutes or even hours for
256extremely large directory structures. A single long-running HTTP request is a
257fragile thing: proxies, NAT boxes, browsers, and users may all grow impatient
258with waiting and give up on the connection.
259
260For this reason, long-running operations have an "operation handle", which
261can be used to poll for status/progress messages while the operation
262proceeds. This handle can also be used to cancel the operation. These handles
263are created by the client, and passed in as a an "ophandle=" query argument
264to the POST or PUT request which starts the operation. The following
265operations can then be used to retrieve status:
266
267``GET /operations/$HANDLE?output=HTML   (with or without t=status)``
268
269``GET /operations/$HANDLE?output=JSON   (same)``
270
271 These two retrieve the current status of the given operation. Each operation
272 presents a different sort of information, but in general the page retrieved
273 will indicate:
274
275 * whether the operation is complete, or if it is still running
276 * how much of the operation is complete, and how much is left, if possible
277
278 Note that the final status output can be quite large: a deep-manifest of a
279 directory structure with 300k directories and 200k unique files is about
280 275MB of JSON, and might take two minutes to generate. For this reason, the
281 full status is not provided until the operation has completed.
282
283 The HTML form will include a meta-refresh tag, which will cause a regular
284 web browser to reload the status page about 60 seconds later. This tag will
285 be removed once the operation has completed.
286
287 There may be more status information available under
288 /operations/$HANDLE/$ETC : i.e., the handle forms the root of a URL space.
289
290``POST /operations/$HANDLE?t=cancel``
291
292 This terminates the operation, and returns an HTML page explaining what was
293 cancelled. If the operation handle has already expired (see below), this
294 POST will return a 404, which indicates that the operation is no longer
295 running (either it was completed or terminated). The response body will be
296 the same as a GET /operations/$HANDLE on this operation handle, and the
297 handle will be expired immediately afterwards.
298
299The operation handle will eventually expire, to avoid consuming an unbounded
300amount of memory. The handle's time-to-live can be reset at any time, by
301passing a retain-for= argument (with a count of seconds) to either the
302initial POST that starts the operation, or the subsequent GET request which
303asks about the operation. For example, if a 'GET
304/operations/$HANDLE?output=JSON&retain-for=600' query is performed, the
305handle will remain active for 600 seconds (10 minutes) after the GET was
306received.
307
308In addition, if the GET includes a release-after-complete=True argument, and
309the operation has completed, the operation handle will be released
310immediately.
311
312If a retain-for= argument is not used, the default handle lifetimes are:
313
314 * handles will remain valid at least until their operation finishes
315 * uncollected handles for finished operations (i.e. handles for
316   operations that have finished but for which the GET page has not been
317   accessed since completion) will remain valid for four days, or for
318   the total time consumed by the operation, whichever is greater.
319 * collected handles (i.e. the GET page has been retrieved at least once
320   since the operation completed) will remain valid for one day.
321
322Many "slow" operations can begin to use unacceptable amounts of memory when
323operating on large directory structures. The memory usage increases when the
324ophandle is polled, as the results must be copied into a JSON string, sent
325over the wire, then parsed by a client. So, as an alternative, many "slow"
326operations have streaming equivalents. These equivalents do not use operation
327handles. Instead, they emit line-oriented status results immediately. Client
328code can cancel the operation by simply closing the HTTP connection.
329
330
331Programmatic Operations
332=======================
333
334Now that we know how to build URLs that refer to files and directories in a
335Tahoe-LAFS file store, what sorts of operations can we do with those URLs?
336This section contains a catalog of GET, PUT, DELETE, and POST operations that
337can be performed on these URLs. This set of operations are aimed at programs
338that use HTTP to communicate with a Tahoe node. A later section describes
339operations that are intended for web browsers.
340
341
342Reading a File
343--------------
344
345``GET /uri/$FILECAP``
346
347``GET /uri/$DIRCAP/[SUBDIRS../]FILENAME``
348
349 This will retrieve the contents of the given file. The HTTP response body
350 will contain the sequence of bytes that make up the file.
351
352 The "Range:" header can be used to restrict which portions of the file are
353 returned (see RFC 2616 section 14.35.1 "Byte Ranges"), however Tahoe only
354 supports a single "bytes" range and never provides a
355 ``multipart/byteranges`` response. An attempt to begin a read past the end
356 of the file will provoke a 416 Requested Range Not Satisfiable error, but
357 normal overruns (reads which start at the beginning or middle and go beyond
358 the end) are simply truncated.
359
360 To view files in a web browser, you may want more control over the
361 Content-Type and Content-Disposition headers. Please see the next section
362 "Browser Operations", for details on how to modify these URLs for that
363 purpose.
364
365
366Writing/Uploading a File
367------------------------
368
369``PUT /uri/$FILECAP``
370
371``PUT /uri/$DIRCAP/[SUBDIRS../]FILENAME``
372
373 Upload a file, using the data from the HTTP request body, and add whatever
374 child links and subdirectories are necessary to make the file available at
375 the given location. Once this operation succeeds, a GET on the same URL will
376 retrieve the same contents that were just uploaded. This will create any
377 necessary intermediate subdirectories.
378
379 To use the /uri/$FILECAP form, $FILECAP must be a write-cap for a mutable file.
380
381 In the /uri/$DIRCAP/[SUBDIRS../]FILENAME form, if the target file is a
382 writeable mutable file, that file's contents will be overwritten
383 in-place. If it is a read-cap for a mutable file, an error will occur.
384 If it is an immutable file, the old file will be discarded, and a new
385 one will be put in its place. If the target file is a writable mutable
386 file, you may also specify an "offset" parameter -- a byte offset that
387 determines where in the mutable file the data from the HTTP request
388 body is placed. This operation is relatively efficient for MDMF mutable
389 files, and is relatively inefficient (but still supported) for SDMF
390 mutable files. If no offset parameter is specified, then the entire
391 file is replaced with the data from the HTTP request body. For an
392 immutable file, the "offset" parameter is not valid.
393
394 When creating a new file, you can control the type of file created by
395 specifying a format= argument in the query string. format=MDMF creates an
396 MDMF mutable file. format=SDMF creates an SDMF mutable file. format=CHK
397 creates an immutable file. The value of the format argument is
398 case-insensitive. If no format is specified, the newly-created file will be
399 immutable (but see below).
400
401 For compatibility with previous versions of Tahoe-LAFS, the web-API will
402 also accept a mutable=true argument in the query string. If mutable=true is
403 given, then the new file will be mutable, and its format will be the default
404 mutable file format, as configured by the [client]mutable.format option of
405 tahoe.cfg on the Tahoe-LAFS node hosting the webapi server. Use of
406 mutable=true is discouraged; new code should use format= instead of
407 mutable=true (unless it needs to be compatible with web-API servers older
408 than v1.9.0). If neither format= nor mutable=true are given, the
409 newly-created file will be immutable.
410
411 This returns the file-cap of the resulting file. If a new file was created
412 by this method, the HTTP response code (as dictated by rfc2616) will be set
413 to 201 CREATED. If an existing file was replaced or modified, the response
414 code will be 200 OK.
415
416 Note that the 'curl -T localfile http://127.0.0.1:3456/uri/$DIRCAP/foo.txt'
417 command can be used to invoke this operation.
418
419``PUT /uri``
420
421 This uploads a file, and produces a file-cap for the contents, but does not
422 attach the file into the file store. No directories will be modified by
423 this operation. The file-cap is returned as the body of the HTTP response.
424
425 This method accepts format= and mutable=true as query string arguments, and
426 interprets those arguments in the same way as the linked forms of PUT
427 described immediately above.
428
429Creating a New Directory
430------------------------
431
432``POST /uri?t=mkdir``
433
434``PUT /uri?t=mkdir``
435
436 Create a new empty directory and return its write-cap as the HTTP response
437 body. This does not make the newly created directory visible from the
438 file store. The "PUT" operation is provided for backwards compatibility:
439 new code should use POST.
440
441 This supports a format= argument in the query string. The format=
442 argument, if specified, controls the format of the directory. format=MDMF
443 indicates that the directory should be stored as an MDMF file; format=SDMF
444 indicates that the directory should be stored as an SDMF file. The value of
445 the format= argument is case-insensitive. If no format= argument is
446 given, the directory's format is determined by the default mutable file
447 format, as configured on the Tahoe-LAFS node responding to the request.
448
449``POST /uri?t=mkdir-with-children``
450
451 Create a new directory, populated with a set of child nodes, and return its
452 write-cap as the HTTP response body. The new directory is not attached to
453 any other directory: the returned write-cap is the only reference to it.
454
455 The format of the directory can be controlled with the format= argument in
456 the query string, as described above.
457
458 Initial children are provided as the body of the POST form (this is more
459 efficient than doing separate mkdir and set_children operations). If the
460 body is empty, the new directory will be empty. If not empty, the body will
461 be interpreted as a UTF-8 JSON-encoded dictionary of children with which the
462 new directory should be populated, using the same format as would be
463 returned in the 'children' value of the t=json GET request, described below.
464 Each dictionary key should be a child name, and each value should be a list
465 of [TYPE, PROPDICT], where PROPDICT contains "rw_uri", "ro_uri", and
466 "metadata" keys (all others are ignored). For example, the PUT request body
467 could be::
468
469  {
470    "Fran\u00e7ais": [ "filenode", {
471        "ro_uri": "URI:CHK:...",
472        "metadata": {
473          "ctime": 1202777696.7564139,
474          "mtime": 1202777696.7564139,
475          "tahoe": {
476            "linkcrtime": 1202777696.7564139,
477            "linkmotime": 1202777696.7564139
478            } } } ],
479    "subdir":  [ "dirnode", {
480        "rw_uri": "URI:DIR2:...",
481        "ro_uri": "URI:DIR2-RO:...",
482        "metadata": {
483          "ctime": 1202778102.7589991,
484          "mtime": 1202778111.2160511,
485          "tahoe": {
486            "linkcrtime": 1202777696.7564139,
487            "linkmotime": 1202777696.7564139
488          } } } ]
489  }
490
491 For forward-compatibility, a mutable directory can also contain caps in
492 a format that is unknown to the web-API server. When such caps are retrieved
493 from a mutable directory in a "ro_uri" field, they will be prefixed with
494 the string "ro.", indicating that they must not be decoded without
495 checking that they are read-only. The "ro." prefix must not be stripped
496 off without performing this check. (Future versions of the web-API server
497 will perform it where necessary.)
498
499 If both the "rw_uri" and "ro_uri" fields are present in a given PROPDICT,
500 and the web-API server recognizes the rw_uri as a write cap, then it will
501 reset the ro_uri to the corresponding read cap and discard the original
502 contents of ro_uri (in order to ensure that the two caps correspond to the
503 same object and that the ro_uri is in fact read-only). However this may not
504 happen for caps in a format unknown to the web-API server. Therefore, when
505 writing a directory the web-API client should ensure that the contents
506 of "rw_uri" and "ro_uri" for a given PROPDICT are a consistent
507 (write cap, read cap) pair if possible. If the web-API client only has
508 one cap and does not know whether it is a write cap or read cap, then
509 it is acceptable to set "rw_uri" to that cap and omit "ro_uri". The
510 client must not put a write cap into a "ro_uri" field.
511
512 The metadata may have a "no-write" field. If this is set to true in the
513 metadata of a link, it will not be possible to open that link for writing
514 via the SFTP frontend; see :doc:`FTP-and-SFTP` for details. Also, if the
515 "no-write" field is set to true in the metadata of a link to a mutable
516 child, it will cause the link to be diminished to read-only.
517
518 Note that the web-API-using client application must not provide the
519 "Content-Type: multipart/form-data" header that usually accompanies HTML
520 form submissions, since the body is not formatted this way. Doing so will
521 cause a server error as the lower-level code misparses the request body.
522
523 Child file names should each be expressed as a Unicode string, then used as
524 keys of the dictionary. The dictionary should then be converted into JSON,
525 and the resulting string encoded into UTF-8. This UTF-8 bytestring should
526 then be used as the POST body.
527
528``POST /uri?t=mkdir-immutable``
529
530 Like t=mkdir-with-children above, but the new directory will be
531 deep-immutable. This means that the directory itself is immutable, and that
532 it can only contain objects that are treated as being deep-immutable, like
533 immutable files, literal files, and deep-immutable directories.
534
535 For forward-compatibility, a deep-immutable directory can also contain caps
536 in a format that is unknown to the web-API server. When such caps are retrieved
537 from a deep-immutable directory in a "ro_uri" field, they will be prefixed
538 with the string "imm.", indicating that they must not be decoded without
539 checking that they are immutable. The "imm." prefix must not be stripped
540 off without performing this check. (Future versions of the web-API server
541 will perform it where necessary.)
542
543 The cap for each child may be given either in the "rw_uri" or "ro_uri"
544 field of the PROPDICT (not both). If a cap is given in the "rw_uri" field,
545 then the web-API server will check that it is an immutable read-cap of a
546 *known* format, and give an error if it is not. If a cap is given in the
547 "ro_uri" field, then the web-API server will still check whether known
548 caps are immutable, but for unknown caps it will simply assume that the
549 cap can be stored, as described above. Note that an attacker would be
550 able to store any cap in an immutable directory, so this check when
551 creating the directory is only to help non-malicious clients to avoid
552 accidentally giving away more authority than intended.
553
554 A non-empty request body is mandatory, since after the directory is created,
555 it will not be possible to add more children to it.
556
557``POST /uri/$DIRCAP/[SUBDIRS../]SUBDIR?t=mkdir``
558
559``PUT /uri/$DIRCAP/[SUBDIRS../]SUBDIR?t=mkdir``
560
561 Create new directories as necessary to make sure that the named target
562 ($DIRCAP/SUBDIRS../SUBDIR) is a directory. This will create additional
563 intermediate mutable directories as necessary. If the named target directory
564 already exists, this will make no changes to it.
565
566 If the final directory is created, it will be empty.
567
568 This accepts a format= argument in the query string, which controls the
569 format of the named target directory, if it does not already exist. format=
570 is interpreted in the same way as in the POST /uri?t=mkdir form. Note that
571 format= only controls the format of the named target directory;
572 intermediate directories, if created, are created based on the default
573 mutable type, as configured on the Tahoe-LAFS server responding to the
574 request.
575
576 This operation will return an error if a blocking file is present at any of
577 the parent names, preventing the server from creating the necessary parent
578 directory; or if it would require changing an immutable directory.
579
580 The write-cap of the new directory will be returned as the HTTP response
581 body.
582
583``POST /uri/$DIRCAP/[SUBDIRS../]SUBDIR?t=mkdir-with-children``
584
585 Like /uri?t=mkdir-with-children, but the final directory is created as a
586 child of an existing mutable directory. This will create additional
587 intermediate mutable directories as necessary. If the final directory is
588 created, it will be populated with initial children from the POST request
589 body, as described above.
590
591 This accepts a format= argument in the query string, which controls the
592 format of the target directory, if the target directory is created as part
593 of the operation. format= is interpreted in the same way as in the POST/
594 uri?t=mkdir-with-children operation. Note that format= only controls the
595 format of the named target directory; intermediate directories, if created,
596 are created using the default mutable type setting, as configured on the
597 Tahoe-LAFS server responding to the request.
598
599 This operation will return an error if a blocking file is present at any of
600 the parent names, preventing the server from creating the necessary parent
601 directory; or if it would require changing an immutable directory; or if
602 the immediate parent directory already has a a child named SUBDIR.
603
604``POST /uri/$DIRCAP/[SUBDIRS../]SUBDIR?t=mkdir-immutable``
605
606 Like /uri?t=mkdir-immutable, but the final directory is created as a child
607 of an existing mutable directory. The final directory will be deep-immutable,
608 and will be populated with the children specified as a JSON dictionary in
609 the POST request body.
610
611 In Tahoe 1.6 this operation creates intermediate mutable directories if
612 necessary, but that behaviour should not be relied on; see ticket #920.
613
614 This operation will return an error if the parent directory is immutable,
615 or already has a child named SUBDIR.
616
617``POST /uri/$DIRCAP/[SUBDIRS../]?t=mkdir&name=NAME``
618
619 Create a new empty mutable directory and attach it to the given existing
620 directory. This will create additional intermediate directories as necessary.
621
622 This accepts a format= argument in the query string, which controls the
623 format of the named target directory, if it does not already exist. format=
624 is interpreted in the same way as in the POST /uri?t=mkdir form. Note that
625 format= only controls the format of the named target directory;
626 intermediate directories, if created, are created based on the default
627 mutable type, as configured on the Tahoe-LAFS server responding to the
628 request.
629
630 This operation will return an error if a blocking file is present at any of
631 the parent names, preventing the server from creating the necessary parent
632 directory, or if it would require changing any immutable directory.
633
634 The URL of this operation points to the parent of the bottommost new directory,
635 whereas the /uri/$DIRCAP/[SUBDIRS../]SUBDIR?t=mkdir operation above has a URL
636 that points directly to the bottommost new directory.
637
638``POST /uri/$DIRCAP/[SUBDIRS../]?t=mkdir-with-children&name=NAME``
639
640 Like /uri/$DIRCAP/[SUBDIRS../]?t=mkdir&name=NAME, but the new directory will
641 be populated with initial children via the POST request body. This command
642 will create additional intermediate mutable directories as necessary.
643
644 This accepts a format= argument in the query string, which controls the
645 format of the target directory, if the target directory is created as part
646 of the operation. format= is interpreted in the same way as in the POST/
647 uri?t=mkdir-with-children operation. Note that format= only controls the
648 format of the named target directory; intermediate directories, if created,
649 are created using the default mutable type setting, as configured on the
650 Tahoe-LAFS server responding to the request.
651
652 This operation will return an error if a blocking file is present at any of
653 the parent names, preventing the server from creating the necessary parent
654 directory; or if it would require changing an immutable directory; or if
655 the immediate parent directory already has a a child named NAME.
656
657 Note that the name= argument must be passed as a queryarg, because the POST
658 request body is used for the initial children JSON.
659
660``POST /uri/$DIRCAP/[SUBDIRS../]?t=mkdir-immutable&name=NAME``
661
662 Like /uri/$DIRCAP/[SUBDIRS../]?t=mkdir-with-children&name=NAME, but the
663 final directory will be deep-immutable. The children are specified as a
664 JSON dictionary in the POST request body. Again, the name= argument must be
665 passed as a queryarg.
666
667 In Tahoe 1.6 this operation creates intermediate mutable directories if
668 necessary, but that behaviour should not be relied on; see ticket #920.
669
670 This operation will return an error if the parent directory is immutable,
671 or already has a child named NAME.
672
673
674Getting Information About a File Or Directory (as JSON)
675-------------------------------------------------------
676
677``GET /uri/$FILECAP?t=json``
678
679``GET /uri/$DIRCAP?t=json``
680
681``GET /uri/$DIRCAP/[SUBDIRS../]SUBDIR?t=json``
682
683``GET /uri/$DIRCAP/[SUBDIRS../]FILENAME?t=json``
684
685 This returns a machine-parseable JSON-encoded description of the given
686 object. The JSON always contains a list, and the first element of the list is
687 always a flag that indicates whether the referenced object is a file or a
688 directory. If it is a capability to a file, then the information includes
689 file size and URI, like this::
690
691  GET /uri/$FILECAP?t=json :
692
693   [ "filenode", {
694      "ro_uri": file_uri,
695      "verify_uri": verify_uri,
696      "size": bytes,
697      "mutable": false,
698      "format": "CHK"
699     } ]
700
701 If it is a capability to a directory followed by a path from that directory
702 to a file, then the information also includes metadata from the link to the
703 file in the parent directory, like this::
704
705  GET /uri/$DIRCAP/[SUBDIRS../]FILENAME?t=json
706
707   [ "filenode", {
708      "ro_uri": file_uri,
709      "verify_uri": verify_uri,
710      "size": bytes,
711      "mutable": false,
712      "format": "CHK",
713      "metadata": {
714       "ctime": 1202777696.7564139,
715       "mtime": 1202777696.7564139,
716       "tahoe": {
717        "linkcrtime": 1202777696.7564139,
718        "linkmotime": 1202777696.7564139
719       } } } ]
720
721 If it is a directory, then it includes information about the children of
722 this directory, as a mapping from child name to a set of data about the
723 child (the same data that would appear in a corresponding GET?t=json of the
724 child itself). The child entries also include metadata about each child,
725 including link-creation- and link-change- timestamps. The output looks like
726 this::
727
728  GET /uri/$DIRCAP?t=json :
729  GET /uri/$DIRCAP/[SUBDIRS../]SUBDIR?t=json :
730
731   [ "dirnode", {
732     "rw_uri": read_write_uri,
733     "ro_uri": read_only_uri,
734     "verify_uri": verify_uri,
735     "mutable": true,
736     "format": "SDMF",
737     "children": {
738      "foo.txt": [ "filenode",
739                   {
740                     "ro_uri": uri,
741                     "size": bytes,
742                     "metadata": {
743                       "ctime": 1202777696.7564139,
744                       "mtime": 1202777696.7564139,
745                       "tahoe": {
746                         "linkcrtime": 1202777696.7564139,
747                         "linkmotime": 1202777696.7564139
748                       } } } ],
749      "subdir":  [ "dirnode",
750                   {
751                     "rw_uri": rwuri,
752                     "ro_uri": rouri,
753                     "metadata": {
754                       "ctime": 1202778102.7589991,
755                       "mtime": 1202778111.2160511,
756                       "tahoe": {
757                         "linkcrtime": 1202777696.7564139,
758                         "linkmotime": 1202777696.7564139
759                       } } } ]
760      } } ]
761
762 In the above example, note how 'children' is a dictionary in which the keys
763 are child names and the values depend upon whether the child is a file or a
764 directory. The value is mostly the same as the JSON representation of the
765 child object (except that directories do not recurse -- the "children"
766 entry of the child is omitted, and the directory view includes the metadata
767 that is stored on the directory edge).
768
769 The rw_uri field will be present in the information about a directory
770 if and only if you have read-write access to that directory. The verify_uri
771 field will be present if and only if the object has a verify-cap
772 (non-distributed LIT files do not have verify-caps).
773
774 If the cap is of an unknown format, then the file size and verify_uri will
775 not be available::
776
777  GET /uri/$UNKNOWNCAP?t=json :
778
779   [ "unknown", {
780       "ro_uri": unknown_read_uri
781       } ]
782
783  GET /uri/$DIRCAP/[SUBDIRS../]UNKNOWNCHILDNAME?t=json :
784
785   [ "unknown", {
786       "rw_uri": unknown_write_uri,
787       "ro_uri": unknown_read_uri,
788       "mutable": true,
789       "metadata": {
790         "ctime": 1202777696.7564139,
791         "mtime": 1202777696.7564139,
792         "tahoe": {
793           "linkcrtime": 1202777696.7564139,
794           "linkmotime": 1202777696.7564139
795         } } } ]
796
797 As in the case of file nodes, the metadata will only be present when the
798 capability is to a directory followed by a path. The "mutable" field is also
799 not always present; when it is absent, the mutability of the object is not
800 known.
801
802About the metadata
803``````````````````
804
805The value of the 'tahoe':'linkmotime' key is updated whenever a link to a
806child is set. The value of the 'tahoe':'linkcrtime' key is updated whenever
807a link to a child is created -- i.e. when there was not previously a link
808under that name.
809
810Note however, that if the edge in the Tahoe-LAFS file store points to a
811mutable file and the contents of that mutable file is changed, then the
812'tahoe':'linkmotime' value on that edge will *not* be updated, since the
813edge itself wasn't updated -- only the mutable file was.
814
815The timestamps are represented as a number of seconds since the UNIX epoch
816(1970-01-01 00:00:00 UTC), with leap seconds not being counted in the long
817term.
818
819In Tahoe earlier than v1.4.0, 'mtime' and 'ctime' keys were populated
820instead of the 'tahoe':'linkmotime' and 'tahoe':'linkcrtime' keys. Starting
821in Tahoe v1.4.0, the 'linkmotime'/'linkcrtime' keys in the 'tahoe' sub-dict
822are populated. However, prior to Tahoe v1.7beta, a bug caused the 'tahoe'
823sub-dict to be deleted by web-API requests in which new metadata is
824specified, and not to be added to existing child links that lack it.
825
826From Tahoe v1.7.0 onward, the 'mtime' and 'ctime' fields are no longer
827populated or updated (see ticket #924), except by "tahoe backup" as
828explained below. For backward compatibility, when an existing link is
829updated and 'tahoe':'linkcrtime' is not present in the previous metadata
830but 'ctime' is, the old value of 'ctime' is used as the new value of
831'tahoe':'linkcrtime'.
832
833The reason we added the new fields in Tahoe v1.4.0 is that there is a
834"set_children" API (described below) which you can use to overwrite the
835values of the 'mtime'/'ctime' pair, and this API is used by the
836"tahoe backup" command (in Tahoe v1.3.0 and later) to set the 'mtime' and
837'ctime' values when backing up files from a local filesystem into the
838Tahoe-LAFS file store. As of Tahoe v1.4.0, the set_children API cannot be
839used to set anything under the 'tahoe' key of the metadata dict -- if you
840include 'tahoe' keys in your 'metadata' arguments then it will silently
841ignore those keys.
842
843Therefore, if the 'tahoe' sub-dict is present, you can rely on the
844'linkcrtime' and 'linkmotime' values therein to have the semantics described
845above. (This is assuming that only official Tahoe clients have been used to
846write those links, and that their system clocks were set to what you expected
847-- there is nothing preventing someone from editing their Tahoe client or
848writing their own Tahoe client which would overwrite those values however
849they like, and there is nothing to constrain their system clock from taking
850any value.)
851
852When an edge is created or updated by "tahoe backup", the 'mtime' and
853'ctime' keys on that edge are set as follows:
854
855* 'mtime' is set to the timestamp read from the local filesystem for the
856  "mtime" of the local file in question, which means the last time the
857  contents of that file were changed.
858
859* On Windows, 'ctime' is set to the creation timestamp for the file
860  read from the local filesystem. On other platforms, 'ctime' is set to
861  the UNIX "ctime" of the local file, which means the last time that
862  either the contents or the metadata of the local file was changed.
863
864There are several ways that the 'ctime' field could be confusing:
865
8661. You might be confused about whether it reflects the time of the creation
867   of a link in the Tahoe-LAFS file store (by a version of Tahoe < v1.7.0)
868   or a timestamp copied in by "tahoe backup" from a local filesystem.
869
8702. You might be confused about whether it is a copy of the file creation
871   time (if "tahoe backup" was run on a Windows system) or of the last
872   contents-or-metadata change (if "tahoe backup" was run on a different
873   operating system).
874
8753. You might be confused by the fact that changing the contents of a
876   mutable file in Tahoe doesn't have any effect on any links pointing at
877   that file in any directories, although "tahoe backup" sets the link
878   'ctime'/'mtime' to reflect timestamps about the local file corresponding
879   to the Tahoe file to which the link points.
880
8814. Also, quite apart from Tahoe, you might be confused about the meaning
882   of the "ctime" in UNIX local filesystems, which people sometimes think
883   means file creation time, but which actually means, in UNIX local
884   filesystems, the most recent time that the file contents or the file
885   metadata (such as owner, permission bits, extended attributes, etc.)
886   has changed. Note that although "ctime" does not mean file creation time
887   in UNIX, links created by a version of Tahoe prior to v1.7.0, and never
888   written by "tahoe backup", will have 'ctime' set to the link creation
889   time.
890
891
892Attaching an Existing File or Directory by its read- or write-cap
893-----------------------------------------------------------------
894
895``PUT /uri/$DIRCAP/[SUBDIRS../]CHILDNAME?t=uri``
896
897 This attaches a child object (either a file or directory) to a specified
898 location in the Tahoe-LAFS file store. The child object is referenced by its
899 read- or write- cap, as provided in the HTTP request body. This will create
900 intermediate directories as necessary.
901
902 This is similar to a UNIX hardlink: by referencing a previously-uploaded file
903 (or previously-created directory) instead of uploading/creating a new one,
904 you can create two references to the same object.
905
906 The read- or write- cap of the child is provided in the body of the HTTP
907 request, and this same cap is returned in the response body.
908
909 The default behavior is to overwrite any existing object at the same
910 location. To prevent this (and make the operation return an error instead
911 of overwriting), add a "replace=false" argument, as "?t=uri&replace=false".
912 With replace=false, this operation will return an HTTP 409 "Conflict" error
913 if there is already an object at the given location, rather than
914 overwriting the existing object. To allow the operation to overwrite a
915 file, but return an error when trying to overwrite a directory, use
916 "replace=only-files" (this behavior is closer to the traditional UNIX "mv"
917 command). Note that "true", "t", and "1" are all synonyms for "True", and
918 "false", "f", and "0" are synonyms for "False", and the parameter is
919 case-insensitive.
920
921 Note that this operation does not take its child cap in the form of
922 separate "rw_uri" and "ro_uri" fields. Therefore, it cannot accept a
923 child cap in a format unknown to the web-API server, unless its URI
924 starts with "ro." or "imm.". This restriction is necessary because the
925 server is not able to attenuate an unknown write cap to a read cap.
926 Unknown URIs starting with "ro." or "imm.", on the other hand, are
927 assumed to represent read caps. The client should not prefix a write
928 cap with "ro." or "imm." and pass it to this operation, since that
929 would result in granting the cap's write authority to holders of the
930 directory read cap.
931
932
933Adding Multiple Files or Directories to a Parent Directory at Once
934------------------------------------------------------------------
935
936``POST /uri/$DIRCAP/[SUBDIRS..]?t=set_children``
937
938``POST /uri/$DIRCAP/[SUBDIRS..]?t=set-children``    (Tahoe >= v1.6)
939
940 This command adds multiple children to a directory in a single operation.
941 It reads the request body and interprets it as a JSON-encoded description
942 of the child names and read/write-caps that should be added.
943
944 The body should be a JSON-encoded dictionary, in the same format as the
945 "children" value returned by the "GET /uri/$DIRCAP?t=json" operation
946 described above. In this format, each key is a child names, and the
947 corresponding value is a tuple of (type, childinfo). "type" is ignored, and
948 "childinfo" is a dictionary that contains "rw_uri", "ro_uri", and
949 "metadata" keys. You can take the output of "GET /uri/$DIRCAP1?t=json" and
950 use it as the input to "POST /uri/$DIRCAP2?t=set_children" to make DIR2
951 look very much like DIR1 (except for any existing children of DIR2 that
952 were not overwritten, and any existing "tahoe" metadata keys as described
953 below).
954
955 When the set_children request contains a child name that already exists in
956 the target directory, this command defaults to overwriting that child with
957 the new value (both child cap and metadata, but if the JSON data does not
958 contain a "metadata" key, the old child's metadata is preserved). The
959 command takes a boolean "overwrite=" query argument to control this
960 behavior. If you use "?t=set_children&overwrite=false", then an attempt to
961 replace an existing child will instead cause an error.
962
963 Any "tahoe" key in the new child's "metadata" value is ignored. Any
964 existing "tahoe" metadata is preserved. The metadata["tahoe"] value is
965 reserved for metadata generated by the tahoe node itself. The only two keys
966 currently placed here are "linkcrtime" and "linkmotime". For details, see
967 the section above entitled "Getting Information About a File Or Directory (as
968 JSON)", in the "About the metadata" subsection.
969
970 Note that this command was introduced with the name "set_children", which
971 uses an underscore rather than a hyphen as other multi-word command names
972 do. The variant with a hyphen is now accepted, but clients that desire
973 backward compatibility should continue to use "set_children".
974
975
976Unlinking a File or Directory
977-----------------------------
978
979``DELETE /uri/$DIRCAP/[SUBDIRS../]CHILDNAME``
980
981 This removes the given name from its parent directory. CHILDNAME is the
982 name to be removed, and $DIRCAP/SUBDIRS.. indicates the directory that will
983 be modified.
984
985 Note that this does not actually delete the file or directory that the name
986 points to from the tahoe grid -- it only unlinks the named reference from
987 this directory. If there are other names in this directory or in other
988 directories that point to the resource, then it will remain accessible
989 through those paths. Even if all names pointing to this object are removed
990 from their parent directories, then someone with possession of its read-cap
991 can continue to access the object through that cap.
992
993 The object will only become completely unreachable once 1: there are no
994 reachable directories that reference it, and 2: nobody is holding a read-
995 or write- cap to the object. (This behavior is very similar to the way
996 hardlinks and anonymous files work in traditional UNIX filesystems).
997
998 This operation will not modify more than a single directory. Intermediate
999 directories which were implicitly created by PUT or POST methods will *not*
1000 be automatically removed by DELETE.
1001
1002 This method returns the file- or directory- cap of the object that was just
1003 removed.
1004
1005
1006Browser Operations: Human-oriented interfaces
1007=============================================
1008
1009This section describes the HTTP operations that provide support for humans
1010running a web browser. Most of these operations use HTML forms that use POST
1011to drive the Tahoe-LAFS node. This section is intended for HTML authors who
1012want to write web pages containing user interfaces for manipulating the
1013Tahoe-LAFS file store.
1014
1015Note that for all POST operations, the arguments listed can be provided
1016either as URL query arguments or as form body fields. URL query arguments are
1017separated from the main URL by "?", and from each other by "&". For example,
1018"POST /uri/$DIRCAP?t=upload&mutable=true". Form body fields are usually
1019specified by using <input type="hidden"> elements. For clarity, the
1020descriptions below display the most significant arguments as URL query args.
1021
1022
1023Viewing a Directory (as HTML)
1024-----------------------------
1025
1026``GET /uri/$DIRCAP/[SUBDIRS../]``
1027
1028 This returns an HTML page, intended to be displayed to a human by a web
1029 browser, which contains HREF links to all files and directories reachable
1030 from this directory. These HREF links do not have a t= argument, meaning
1031 that a human who follows them will get pages also meant for a human. It also
1032 contains forms to upload new files, and to unlink files and directories
1033 from their parent directory. Those forms use POST methods to do their job.
1034
1035
1036Viewing/Downloading a File
1037--------------------------
1038
1039``GET /uri/$FILECAP``
1040
1041``GET /uri/$DIRCAP/[SUBDIRS../]FILENAME``
1042
1043``GET /named/$FILECAP/FILENAME``
1044
1045 These will retrieve the contents of the given file. The HTTP response body
1046 will contain the sequence of bytes that make up the file.
1047
1048 The ``/named/`` form is an alternative to ``/uri/$FILECAP`` which makes it
1049 easier to get the correct filename. The Tahoe server will provide the
1050 contents of the given file, with a Content-Type header derived from the
1051 given filename. This form is used to get browsers to use the "Save Link As"
1052 feature correctly, and also helps command-line tools like "wget" and "curl"
1053 use the right filename. Note that this form can *only* be used with file
1054 caps; it is an error to use a directory cap after the /named/ prefix.
1055
1056 URLs may also use /file/$FILECAP/FILENAME as a synonym for
1057 /named/$FILECAP/FILENAME. The use of "/file/" is deprecated in favor of
1058 "/named/" and support for "/file/" will be removed in a future release of
1059 Tahoe-LAFS.
1060
1061 If you use the first form (``/uri/$FILECAP``) and want the HTTP response to
1062 include a useful Content-Type header, add a "filename=foo" query argument,
1063 like "GET /uri/$FILECAP?filename=foo.jpg". The bare "GET /uri/$FILECAP" does
1064 not give the Tahoe node enough information to determine a Content-Type
1065 (since LAFS immutable files are merely sequences of bytes, not typed and
1066 named file objects).
1067
1068 If the URL has both filename= and "save=true" in the query arguments, then
1069 the server to add a "Content-Disposition: attachment" header, along with a
1070 filename= parameter. When a user clicks on such a link, most browsers will
1071 offer to let the user save the file instead of displaying it inline (indeed,
1072 most browsers will refuse to display it inline). "true", "t", "1", and other
1073 case-insensitive equivalents are all treated the same.
1074
1075 Character-set handling in URLs and HTTP headers is a :ref:`dubious
1076 art<urls-and-utf8>`. For maximum compatibility, Tahoe simply copies the
1077 bytes from the filename= argument into the Content-Disposition header's
1078 filename= parameter, without trying to interpret them in any particular way.
1079
1080
1081Getting Information About a File Or Directory (as HTML)
1082-------------------------------------------------------
1083
1084``GET /uri/$FILECAP?t=info``
1085
1086``GET /uri/$DIRCAP/?t=info``
1087
1088``GET /uri/$DIRCAP/[SUBDIRS../]SUBDIR/?t=info``
1089
1090``GET /uri/$DIRCAP/[SUBDIRS../]FILENAME?t=info``
1091
1092 This returns a human-oriented HTML page with more detail about the selected
1093 file or directory object. This page contains the following items:
1094
1095 * object size
1096 * storage index
1097 * JSON representation
1098 * raw contents (text/plain)
1099 * access caps (URIs): verify-cap, read-cap, write-cap (for mutable objects)
1100 * check/verify/repair form
1101 * deep-check/deep-size/deep-stats/manifest (for directories)
1102 * replace-contents form (for mutable files)
1103
1104
1105Creating a Directory
1106--------------------
1107
1108``POST /uri?t=mkdir``
1109
1110 This creates a new empty directory, but does not attach it to any other
1111 directory in the Tahoe-LAFS file store.
1112
1113 If a "redirect_to_result=true" argument is provided, then the HTTP response
1114 will cause the web browser to be redirected to a /uri/$DIRCAP page that
1115 gives access to the newly-created directory. If you bookmark this page,
1116 you'll be able to get back to the directory again in the future. This is the
1117 recommended way to start working with a Tahoe server: create a new unlinked
1118 directory (using redirect_to_result=true), then bookmark the resulting
1119 /uri/$DIRCAP page. There is a "create directory" button on the Welcome page
1120 to invoke this action.
1121
1122 This accepts a format= argument in the query string. Refer to the
1123 documentation of the PUT /uri?t=mkdir operation in `Creating A
1124 New Directory`_ for information on the behavior of the format= argument.
1125
1126 If "redirect_to_result=true" is not provided (or is given a value of
1127 "false"), then the HTTP response body will simply be the write-cap of the
1128 new directory.
1129
1130``POST /uri/$DIRCAP/[SUBDIRS../]?t=mkdir&name=CHILDNAME``
1131
1132 This creates a new empty directory as a child of the designated SUBDIR. This
1133 will create additional intermediate directories as necessary.
1134
1135 This accepts a format= argument in the query string. Refer to the
1136 documentation of POST /uri/$DIRCAP/[SUBDIRS../]?t=mkdir&name=CHILDNAME in
1137 `Creating a New Directory`_ for information on the behavior of the format=
1138 argument.
1139
1140 If a "when_done=URL" argument is provided, the HTTP response will cause the
1141 web browser to redirect to the given URL. This provides a convenient way to
1142 return the browser to the directory that was just modified. Without a
1143 when_done= argument, the HTTP response will simply contain the write-cap of
1144 the directory that was just created.
1145
1146
1147Uploading a File
1148----------------
1149
1150``POST /uri?t=upload``
1151
1152 This uploads a file, and produces a file-cap for the contents, but does not
1153 attach the file to any directory in the Tahoe-LAFS file store. That is, no
1154 directories will be modified by this operation.
1155
1156 The file must be provided as the "file" field of an HTML encoded form body,
1157 produced in response to an HTML form like this::
1158
1159  <form action="/uri" method="POST" enctype="multipart/form-data">
1160   <input type="hidden" name="t" value="upload" />
1161   <input type="file" name="file" />
1162   <input type="submit" value="Upload Unlinked" />
1163  </form>
1164
1165 If a "when_done=URL" argument is provided, the response body will cause the
1166 browser to redirect to the given URL. If the when_done= URL has the string
1167 "%(uri)s" in it, that string will be replaced by a URL-escaped form of the
1168 newly created file-cap. (Note that without this substitution, there is no
1169 way to access the file that was just uploaded).
1170
1171 The default (in the absence of when_done=) is to return an HTML page that
1172 describes the results of the upload. This page will contain information
1173 about which storage servers were used for the upload, how long each
1174 operation took, etc.
1175
1176 This accepts format= and mutable=true query string arguments. Refer to
1177 `Writing/Uploading a File`_ for information on the behavior of format= and
1178 mutable=true.
1179
1180``POST /uri/$DIRCAP/[SUBDIRS../]?t=upload``
1181
1182 This uploads a file, and attaches it as a new child of the given directory,
1183 which must be mutable. The file must be provided as the "file" field of an
1184 HTML-encoded form body, produced in response to an HTML form like this::
1185
1186  <form action="." method="POST" enctype="multipart/form-data">
1187   <input type="hidden" name="t" value="upload" />
1188   <input type="file" name="file" />
1189   <input type="submit" value="Upload" />
1190  </form>
1191
1192 A "name=" argument can be provided to specify the new child's name,
1193 otherwise it will be taken from the "filename" field of the upload form
1194 (most web browsers will copy the last component of the original file's
1195 pathname into this field). To avoid confusion, name= is not allowed to
1196 contain a slash.
1197
1198 If there is already a child with that name, and it is a mutable file, then
1199 its contents are replaced with the data being uploaded. If it is not a
1200 mutable file, the default behavior is to remove the existing child before
1201 creating a new one. To prevent this (and make the operation return an error
1202 instead of overwriting the old child), add a "replace=false" argument, as
1203 "?t=upload&replace=false". With replace=false, this operation will return an
1204 HTTP 409 "Conflict" error if there is already an object at the given
1205 location, rather than overwriting the existing object. Note that "true",
1206 "t", and "1" are all synonyms for "True", and "false", "f", and "0" are
1207 synonyms for "False". the parameter is case-insensitive.
1208
1209 This will create additional intermediate directories as necessary, although
1210 since it is expected to be triggered by a form that was retrieved by "GET
1211 /uri/$DIRCAP/[SUBDIRS../]", it is likely that the parent directory will
1212 already exist.
1213
1214 This accepts format= and mutable=true query string arguments. Refer to
1215 `Writing/Uploading a File`_ for information on the behavior of format= and
1216 mutable=true.
1217
1218 If a "when_done=URL" argument is provided, the HTTP response will cause the
1219 web browser to redirect to the given URL. This provides a convenient way to
1220 return the browser to the directory that was just modified. Without a
1221 when_done= argument, the HTTP response will simply contain the file-cap of
1222 the file that was just uploaded (a write-cap for mutable files, or a
1223 read-cap for immutable files).
1224
1225``POST /uri/$DIRCAP/[SUBDIRS../]FILENAME?t=upload``
1226
1227 This also uploads a file and attaches it as a new child of the given
1228 directory, which must be mutable. It is a slight variant of the previous
1229 operation, as the URL refers to the target file rather than the parent
1230 directory. It is otherwise identical: this accepts mutable= and when_done=
1231 arguments too.
1232
1233``POST /uri/$FILECAP?t=upload``
1234
1235 This modifies the contents of an existing mutable file in-place. An error is
1236 signalled if $FILECAP does not refer to a mutable file. It behaves just like
1237 the "PUT /uri/$FILECAP" form, but uses a POST for the benefit of HTML forms
1238 in a web browser.
1239
1240
1241Attaching An Existing File Or Directory (by URI)
1242------------------------------------------------
1243
1244``POST /uri/$DIRCAP/[SUBDIRS../]?t=uri&name=CHILDNAME&uri=CHILDCAP``
1245
1246 This attaches a given read- or write- cap "CHILDCAP" to the designated
1247 directory, with a specified child name. This behaves much like the PUT t=uri
1248 operation, and is a lot like a UNIX hardlink. It is subject to the same
1249 restrictions as that operation on the use of cap formats unknown to the
1250 web-API server.
1251
1252 This will create additional intermediate directories as necessary, although
1253 since it is expected to be triggered by a form that was retrieved by "GET
1254 /uri/$DIRCAP/[SUBDIRS../]", it is likely that the parent directory will
1255 already exist.
1256
1257 This accepts the same replace= argument as POST t=upload.
1258
1259
1260Unlinking a Child
1261-----------------
1262
1263``POST /uri/$DIRCAP/[SUBDIRS../]?t=delete&name=CHILDNAME``
1264
1265``POST /uri/$DIRCAP/[SUBDIRS../]?t=unlink&name=CHILDNAME``    (Tahoe >= v1.9)
1266
1267 This instructs the node to remove a child object (file or subdirectory) from
1268 the given directory, which must be mutable. Note that the entire subtree is
1269 unlinked from the parent. Unlike deleting a subdirectory in a UNIX local
1270 filesystem, the subtree need not be empty; if it isn't, then other references
1271 into the subtree will see that the child subdirectories are not modified by
1272 this operation. Only the link from the given directory to its child is severed.
1273
1274 In Tahoe-LAFS v1.9.0 and later, t=unlink can be used as a synonym for t=delete.
1275 If interoperability with older web-API servers is required, t=delete should
1276 be used.
1277
1278
1279Renaming a Child
1280----------------
1281
1282``POST /uri/$DIRCAP/[SUBDIRS../]?t=rename&from_name=OLD&to_name=NEW``
1283
1284 This instructs the node to rename a child of the given directory, which must
1285 be mutable. This has a similar effect to removing the child, then adding the
1286 same child-cap under the new name, except that it preserves metadata. This
1287 operation cannot move the child to a different directory.
1288
1289 The default behavior is to overwrite any existing link at the destination
1290 (replace=true). To prevent this (and make the operation return an error
1291 instead of overwriting), add a "replace=false" argument. With replace=false,
1292 this operation will return an HTTP 409 "Conflict" error if the destination
1293 is not the same link as the source and there is already a link at the
1294 destination, rather than overwriting the existing link. To allow the
1295 operation to overwrite a link to a file, but return an HTTP 409 error when
1296 trying to overwrite a link to a directory, use "replace=only-files" (this
1297 behavior is closer to the traditional UNIX "mv" command). Note that "true",
1298 "t", and "1" are all synonyms for "True"; "false", "f", and "0" are synonyms
1299 for "False"; and the parameter is case-insensitive.
1300
1301
1302Relinking ("Moving") a Child
1303----------------------------
1304
1305``POST /uri/$DIRCAP/[SUBDIRS../]?t=relink&from_name=OLD&to_dir=$NEWDIRCAP/[NEWSUBDIRS../]&to_name=NEW``
1306 ``[&replace=true|false|only-files]``    (Tahoe >= v1.10)
1307
1308 This instructs the node to move a child of the given source directory, into
1309 a different directory and/or to a different name. The command is named
1310 ``relink`` because what it does is add a new link to the child from the new
1311 location, then remove the old link. Nothing is actually "moved": the child
1312 is still reachable through any path from which it was formerly reachable,
1313 and the storage space occupied by its ciphertext is not affected.
1314
1315 The source and destination directories must be writeable. If ``to_dir`` is
1316 not present, the child link is renamed within the same directory. If
1317 ``to_name`` is not present then it defaults to ``from_name``. If the
1318 destination link (directory and name) is the same as the source link, the
1319 operation has no effect.
1320
1321 Metadata from the source directory entry is preserved. Multiple levels of
1322 descent in the source and destination paths are supported.
1323
1324 This operation will return an HTTP 404 "Not Found" error if
1325 ``$DIRCAP/[SUBDIRS../]``, the child being moved, or the destination
1326 directory does not exist. It will return an HTTP 400 "Bad Request" error
1327 if any entry in the source or destination paths is not a directory.
1328
1329 The default behavior is to overwrite any existing link at the destination
1330 (replace=true). To prevent this (and make the operation return an error
1331 instead of overwriting), add a "replace=false" argument. With replace=false,
1332 this operation will return an HTTP 409 "Conflict" error if the destination
1333 is not the same link as the source and there is already a link at the
1334 destination, rather than overwriting the existing link. To allow the
1335 operation to overwrite a link to a file, but return an HTTP 409 error when
1336 trying to overwrite a link to a directory, use "replace=only-files" (this
1337 behavior is closer to the traditional UNIX "mv" command). Note that "true",
1338 "t", and "1" are all synonyms for "True"; "false", "f", and "0" are synonyms
1339 for "False"; and the parameter is case-insensitive.
1340
1341 When relinking into a different directory, for safety, the child link is
1342 not removed from the old directory until it has been successfully added to
1343 the new directory. This implies that in case of a crash or failure, the
1344 link to the child will not be lost, but it could be linked at both the old
1345 and new locations.
1346
1347 The source link should not be the same as any link (directory and child name)
1348 in the ``to_dir`` path. This restriction is not enforced, but it may be
1349 enforced in a future version. If it were violated then the result would be
1350 to create a cycle in the directory structure that is not necessarily reachable
1351 from the root of the destination path (``$NEWDIRCAP``), which could result in
1352 data loss, as described in ticket `#943`_.
1353
1354.. _`#943`: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/943
1355
1356
1357Other Utilities
1358---------------
1359
1360``GET /uri?uri=$CAP``
1361
1362  This causes a redirect to /uri/$CAP, and retains any additional query
1363  arguments (like filename= or save=). This is for the convenience of web
1364  forms which allow the user to paste in a read- or write- cap (obtained
1365  through some out-of-band channel, like IM or email).
1366
1367  Note that this form merely redirects to the specific file or directory
1368  indicated by the $CAP: unlike the GET /uri/$DIRCAP form, you cannot
1369  traverse to children by appending additional path segments to the URL.
1370
1371``GET /uri/$DIRCAP/[SUBDIRS../]?t=rename-form&name=$CHILDNAME``
1372
1373  This provides a useful facility to browser-based user interfaces. It
1374  returns a page containing a form targetting the "POST $DIRCAP t=rename"
1375  functionality described above, with the provided $CHILDNAME present in the
1376  'from_name' field of that form. I.e. this presents a form offering to
1377  rename $CHILDNAME, requesting the new name, and submitting POST rename.
1378  This same URL format can also be used with "move-form" with the expected
1379  results.
1380
1381``GET /uri/$DIRCAP/[SUBDIRS../]CHILDNAME?t=uri``
1382
1383 This returns the file- or directory- cap for the specified object.
1384
1385``GET /uri/$DIRCAP/[SUBDIRS../]CHILDNAME?t=readonly-uri``
1386
1387 This returns a read-only file- or directory- cap for the specified object.
1388 If the object is an immutable file, this will return the same value as
1389 t=uri.
1390
1391
1392Debugging and Testing Features
1393------------------------------
1394
1395These URLs are less-likely to be helpful to the casual Tahoe user, and are
1396mainly intended for developers.
1397
1398``POST $URL?t=check``
1399
1400 This triggers the FileChecker to determine the current "health" of the
1401 given file or directory, by counting how many shares are available. The
1402 page that is returned will display the results. This can be used as a "show
1403 me detailed information about this file" page.
1404
1405 If a verify=true argument is provided, the node will perform a more
1406 intensive check, downloading and verifying every single bit of every share.
1407
1408 If an add-lease=true argument is provided, the node will also add (or
1409 renew) a lease to every share it encounters. Each lease will keep the share
1410 alive for a certain period of time (one month by default). Once the last
1411 lease expires or is explicitly cancelled, the storage server is allowed to
1412 delete the share.
1413
1414 If an output=JSON argument is provided, the response will be
1415 machine-readable JSON instead of human-oriented HTML. The data is a
1416 dictionary with the following keys::
1417
1418  storage-index: a base32-encoded string with the objects's storage index,
1419                 or an empty string for LIT files
1420  summary: a string, with a one-line summary of the stats of the file
1421  results: a dictionary that describes the state of the file. For LIT files,
1422           this dictionary has only the 'healthy' key, which will always be
1423           True. For distributed files, this dictionary has the following
1424           keys:
1425    count-happiness: the servers-of-happiness level of the file, as
1426                     defined in doc/specifications/servers-of-happiness.
1427    count-shares-good: the number of good shares that were found
1428    count-shares-needed: 'k', the number of shares required for recovery
1429    count-shares-expected: 'N', the number of total shares generated
1430    count-good-share-hosts: the number of distinct storage servers with
1431                            good shares. Note that a high value does not
1432                            necessarily imply good share distribution,
1433                            because some of these servers may only hold
1434                            duplicate shares.
1435    count-wrong-shares: for mutable files, the number of shares for
1436                        versions other than the 'best' one (highest
1437                        sequence number, highest roothash). These are
1438                        either old, or created by an uncoordinated or
1439                        not fully successful write.
1440    count-recoverable-versions: for mutable files, the number of
1441                                recoverable versions of the file. For
1442                                a healthy file, this will equal 1.
1443    count-unrecoverable-versions: for mutable files, the number of
1444                                  unrecoverable versions of the file.
1445                                  For a healthy file, this will be 0.
1446    count-corrupt-shares: the number of shares with integrity failures
1447    list-corrupt-shares: a list of "share locators", one for each share
1448                         that was found to be corrupt. Each share locator
1449                         is a list of (serverid, storage_index, sharenum).
1450    servers-responding: list of base32-encoded storage server identifiers,
1451                        one for each server which responded to the share
1452                        query.
1453    healthy: (bool) True if the file is completely healthy, False otherwise.
1454             Healthy files have at least N good shares. Overlapping shares
1455             do not currently cause a file to be marked unhealthy. If there
1456             are at least N good shares, then corrupt shares do not cause the
1457             file to be marked unhealthy, although the corrupt shares will be
1458             listed in the results (list-corrupt-shares) and should be manually
1459             removed to wasting time in subsequent downloads (as the
1460             downloader rediscovers the corruption and uses alternate shares).
1461             Future compatibility: the meaning of this field may change to
1462             reflect whether the servers-of-happiness criterion is met
1463             (see ticket #614).
1464    sharemap: dict mapping share identifier to list of serverids
1465              (base32-encoded strings). This indicates which servers are
1466              holding which shares. For immutable files, the shareid is
1467              an integer (the share number, from 0 to N-1). For
1468              immutable files, it is a string of the form
1469              'seq%d-%s-sh%d', containing the sequence number, the
1470              roothash, and the share number.
1471
1472Before Tahoe-LAFS v1.11, the ``results`` dictionary also had a
1473``needs-rebalancing`` field, but that has been removed since it was computed
1474incorrectly.
1475
1476
1477``POST $URL?t=start-deep-check``    (must add &ophandle=XYZ)
1478
1479 This initiates a recursive walk of all files and directories reachable from
1480 the target, performing a check on each one just like t=check. The result
1481 page will contain a summary of the results, including details on any
1482 file/directory that was not fully healthy.
1483
1484 t=start-deep-check can only be invoked on a directory. An error (400
1485 BAD_REQUEST) will be signalled if it is invoked on a file. The recursive
1486 walker will deal with loops safely.
1487
1488 This accepts the same verify= and add-lease= arguments as t=check.
1489
1490 Since this operation can take a long time (perhaps a second per object),
1491 the ophandle= argument is required (see "Slow Operations, Progress, and
1492 Cancelling" above). The response to this POST will be a redirect to the
1493 corresponding /operations/$HANDLE page (with output=HTML or output=JSON to
1494 match the output= argument given to the POST). The deep-check operation
1495 will continue to run in the background, and the /operations page should be
1496 used to find out when the operation is done.
1497
1498 Detailed check results for non-healthy files and directories will be
1499 available under /operations/$HANDLE/$STORAGEINDEX, and the HTML status will
1500 contain links to these detailed results.
1501
1502 The HTML /operations/$HANDLE page for incomplete operations will contain a
1503 meta-refresh tag, set to 60 seconds, so that a browser which uses
1504 deep-check will automatically poll until the operation has completed.
1505
1506 The JSON page (/options/$HANDLE?output=JSON) will contain a
1507 machine-readable JSON dictionary with the following keys::
1508
1509  finished: a boolean, True if the operation is complete, else False. Some
1510            of the remaining keys may not be present until the operation
1511            is complete.
1512  root-storage-index: a base32-encoded string with the storage index of the
1513                      starting point of the deep-check operation
1514  count-objects-checked: count of how many objects were checked. Note that
1515                         non-distributed objects (i.e. small immutable LIT
1516                         files) are not checked, since for these objects,
1517                         the data is contained entirely in the URI.
1518  count-objects-healthy: how many of those objects were completely healthy
1519  count-objects-unhealthy: how many were damaged in some way
1520  count-corrupt-shares: how many shares were found to have corruption,
1521                        summed over all objects examined
1522  list-corrupt-shares: a list of "share identifiers", one for each share
1523                       that was found to be corrupt. Each share identifier
1524                       is a list of (serverid, storage_index, sharenum).
1525  list-unhealthy-files: a list of (pathname, check-results) tuples, for
1526                        each file that was not fully healthy. 'pathname' is
1527                        a list of strings (which can be joined by "/"
1528                        characters to turn it into a single string),
1529                        relative to the directory on which deep-check was
1530                        invoked. The 'check-results' field is the same as
1531                        that returned by t=check&output=JSON, described
1532                        above.
1533  stats: a dictionary with the same keys as the t=start-deep-stats command
1534         (described below)
1535
1536``POST $URL?t=stream-deep-check``
1537
1538 This initiates a recursive walk of all files and directories reachable from
1539 the target, performing a check on each one just like t=check. For each
1540 unique object (duplicates are skipped), a single line of JSON is emitted to
1541 the HTTP response channel (or an error indication, see below). When the walk
1542 is complete, a final line of JSON is emitted which contains the accumulated
1543 file-size/count "deep-stats" data.
1544
1545 This command takes the same arguments as t=start-deep-check.
1546
1547 A CLI tool can split the response stream on newlines into "response units",
1548 and parse each response unit as JSON. Each such parsed unit will be a
1549 dictionary, and will contain at least the "type" key: a string, one of
1550 "file", "directory", or "stats".
1551
1552 For all units that have a type of "file" or "directory", the dictionary will
1553 contain the following keys::
1554
1555  "path": a list of strings, with the path that is traversed to reach the
1556          object
1557  "cap": a write-cap URI for the file or directory, if available, else a
1558         read-cap URI
1559  "verifycap": a verify-cap URI for the file or directory
1560  "repaircap": an URI for the weakest cap that can still be used to repair
1561               the object
1562  "storage-index": a base32 storage index for the object
1563  "check-results": a copy of the dictionary which would be returned by
1564                   t=check&output=json, with three top-level keys:
1565                   "storage-index", "summary", and "results", and a variety
1566                   of counts and sharemaps in the "results" value.
1567
1568 Note that non-distributed files (i.e. LIT files) will have values of None
1569 for verifycap, repaircap, and storage-index, since these files can neither
1570 be verified nor repaired, and are not stored on the storage servers.
1571 Likewise the check-results dictionary will be limited: an empty string for
1572 storage-index, and a results dictionary with only the "healthy" key.
1573
1574 The last unit in the stream will have a type of "stats", and will contain
1575 the keys described in the "start-deep-stats" operation, below.
1576
1577 If any errors occur during the traversal (specifically if a directory is
1578 unrecoverable, such that further traversal is not possible), an error
1579 indication is written to the response body, instead of the usual line of
1580 JSON. This error indication line will begin with the string "ERROR:" (in all
1581 caps), and contain a summary of the error on the rest of the line. The
1582 remaining lines of the response body will be a python exception. The client
1583 application should look for the ERROR: and stop processing JSON as soon as
1584 it is seen. Note that neither a file being unrecoverable nor a directory
1585 merely being unhealthy will cause traversal to stop. The line just before
1586 the ERROR: will describe the directory that was untraversable, since the
1587 unit is emitted to the HTTP response body before the child is traversed.
1588
1589
1590``POST $URL?t=check&repair=true``
1591
1592 This performs a health check of the given file or directory, and if the
1593 checker determines that the object is not healthy (some shares are missing
1594 or corrupted), it will perform a "repair". During repair, any missing
1595 shares will be regenerated and uploaded to new servers.
1596
1597 This accepts the same verify=true and add-lease= arguments as t=check. When
1598 an output=JSON argument is provided, the machine-readable JSON response
1599 will contain the following keys::
1600
1601  storage-index: a base32-encoded string with the objects's storage index,
1602                 or an empty string for LIT files
1603  repair-attempted: (bool) True if repair was attempted
1604  repair-successful: (bool) True if repair was attempted and the file was
1605                     fully healthy afterwards. False if no repair was
1606                     attempted, or if a repair attempt failed.
1607  pre-repair-results: a dictionary that describes the state of the file
1608                      before any repair was performed. This contains exactly
1609                      the same keys as the 'results' value of the t=check
1610                      response, described above.
1611  post-repair-results: a dictionary that describes the state of the file
1612                       after any repair was performed. If no repair was
1613                       performed, post-repair-results and pre-repair-results
1614                       will be the same. This contains exactly the same keys
1615                       as the 'results' value of the t=check response,
1616                       described above.
1617
1618``POST $URL?t=start-deep-check&repair=true``    (must add &ophandle=XYZ)
1619
1620 This triggers a recursive walk of all files and directories, performing a
1621 t=check&repair=true on each one.
1622
1623 Like t=start-deep-check without the repair= argument, this can only be
1624 invoked on a directory. An error (400 BAD_REQUEST) will be signalled if it
1625 is invoked on a file. The recursive walker will deal with loops safely.
1626
1627 This accepts the same verify= and add-lease= arguments as
1628 t=start-deep-check. It uses the same ophandle= mechanism as
1629 start-deep-check. When an output=JSON argument is provided, the response
1630 will contain the following keys::
1631
1632  finished: (bool) True if the operation has completed, else False
1633  root-storage-index: a base32-encoded string with the storage index of the
1634                      starting point of the deep-check operation
1635  count-objects-checked: count of how many objects were checked
1636
1637  count-objects-healthy-pre-repair: how many of those objects were completely
1638                                    healthy, before any repair
1639  count-objects-unhealthy-pre-repair: how many were damaged in some way
1640  count-objects-healthy-post-repair: how many of those objects were completely
1641                                      healthy, after any repair
1642  count-objects-unhealthy-post-repair: how many were damaged in some way
1643
1644  count-repairs-attempted: repairs were attempted on this many objects.
1645  count-repairs-successful: how many repairs resulted in healthy objects
1646  count-repairs-unsuccessful: how many repairs resulted did not results in
1647                              completely healthy objects
1648  count-corrupt-shares-pre-repair: how many shares were found to have
1649                                   corruption, summed over all objects
1650                                   examined, before any repair
1651  count-corrupt-shares-post-repair: how many shares were found to have
1652                                    corruption, summed over all objects
1653                                    examined, after any repair
1654  list-corrupt-shares: a list of "share identifiers", one for each share
1655                       that was found to be corrupt (before any repair).
1656                       Each share identifier is a list of (serverid,
1657                       storage_index, sharenum).
1658  list-remaining-corrupt-shares: like list-corrupt-shares, but mutable shares
1659                                 that were successfully repaired are not
1660                                 included. These are shares that need
1661                                 manual processing. Since immutable shares
1662                                 cannot be modified by clients, all corruption
1663                                 in immutable shares will be listed here.
1664  list-unhealthy-files: a list of (pathname, check-results) tuples, for
1665                        each file that was not fully healthy. 'pathname' is
1666                        relative to the directory on which deep-check was
1667                        invoked. The 'check-results' field is the same as
1668                        that returned by t=check&repair=true&output=JSON,
1669                        described above.
1670  stats: a dictionary with the same keys as the t=start-deep-stats command
1671         (described below)
1672
1673``POST $URL?t=stream-deep-check&repair=true``
1674
1675 This triggers a recursive walk of all files and directories, performing a
1676 t=check&repair=true on each one. For each unique object (duplicates are
1677 skipped), a single line of JSON is emitted to the HTTP response channel (or
1678 an error indication). When the walk is complete, a final line of JSON is
1679 emitted which contains the accumulated file-size/count "deep-stats" data.
1680
1681 This emits the same data as t=stream-deep-check (without the repair=true),
1682 except that the "check-results" field is replaced with a
1683 "check-and-repair-results" field, which contains the keys returned by
1684 t=check&repair=true&output=json (i.e. repair-attempted, repair-successful,
1685 pre-repair-results, and post-repair-results). The output does not contain
1686 the summary dictionary that is provied by t=start-deep-check&repair=true
1687 (the one with count-objects-checked and list-unhealthy-files), since the
1688 receiving client is expected to calculate those values itself from the
1689 stream of per-object check-and-repair-results.
1690
1691 Note that the "ERROR:" indication will only be emitted if traversal stops,
1692 which will only occur if an unrecoverable directory is encountered. If a
1693 file or directory repair fails, the traversal will continue, and the repair
1694 failure will be indicated in the JSON data (in the "repair-successful" key).
1695
1696``POST $DIRURL?t=start-manifest``    (must add &ophandle=XYZ)
1697
1698 This operation generates a "manfest" of the given directory tree, mostly
1699 for debugging. This is a table of (path, filecap/dircap), for every object
1700 reachable from the starting directory. The path will be slash-joined, and
1701 the filecap/dircap will contain a link to the object in question. This page
1702 gives immediate access to every object in the file store subtree.
1703
1704 This operation uses the same ophandle= mechanism as deep-check. The
1705 corresponding /operations/$HANDLE page has three different forms. The
1706 default is output=HTML.
1707
1708 If output=text is added to the query args, the results will be a text/plain
1709 list. The first line is special: it is either "finished: yes" or "finished:
1710 no"; if the operation is not finished, you must periodically reload the
1711 page until it completes. The rest of the results are a plaintext list, with
1712 one file/dir per line, slash-separated, with the filecap/dircap separated
1713 by a space.
1714
1715 If output=JSON is added to the queryargs, then the results will be a
1716 JSON-formatted dictionary with six keys. Note that because large directory
1717 structures can result in very large JSON results, the full results will not
1718 be available until the operation is complete (i.e. until output["finished"]
1719 is True)::
1720
1721  finished (bool): if False then you must reload the page until True
1722  origin_si (base32 str): the storage index of the starting point
1723  manifest: list of (path, cap) tuples, where path is a list of strings.
1724  verifycaps: list of (printable) verify cap strings
1725  storage-index: list of (base32) storage index strings
1726  stats: a dictionary with the same keys as the t=start-deep-stats command
1727         (described below)
1728
1729``POST $DIRURL?t=start-deep-size``   (must add &ophandle=XYZ)
1730
1731 This operation generates a number (in bytes) containing the sum of the
1732 filesize of all directories and immutable files reachable from the given
1733 directory. This is a rough lower bound of the total space consumed by this
1734 subtree. It does not include space consumed by mutable files, nor does it
1735 take expansion or encoding overhead into account. Later versions of the
1736 code may improve this estimate upwards.
1737
1738 The /operations/$HANDLE status output consists of two lines of text::
1739
1740  finished: yes
1741  size: 1234
1742
1743``POST $DIRURL?t=start-deep-stats``    (must add &ophandle=XYZ)
1744
1745 This operation performs a recursive walk of all files and directories
1746 reachable from the given directory, and generates a collection of
1747 statistics about those objects.
1748
1749 The result (obtained from the /operations/$OPHANDLE page) is a
1750 JSON-serialized dictionary with the following keys (note that some of these
1751 keys may be missing until 'finished' is True)::
1752
1753  finished: (bool) True if the operation has finished, else False
1754  api-version: (int), number of deep-stats API version. Will be increased every
1755               time backwards-incompatible change is introduced.
1756               Current version is 1.
1757  count-immutable-files: count of how many CHK files are in the set
1758  count-mutable-files: same, for mutable files (does not include directories)
1759  count-literal-files: same, for LIT files (data contained inside the URI)
1760  count-files: sum of the above three
1761  count-directories: count of directories
1762  count-unknown: count of unrecognized objects (perhaps from the future)
1763  size-immutable-files: total bytes for all CHK files in the set, =deep-size
1764  size-mutable-files (TODO): same, for current version of all mutable files
1765  size-literal-files: same, for LIT files
1766  size-directories: size of directories (includes size-literal-files)
1767  size-files-histogram: list of (minsize, maxsize, count) buckets,
1768                        with a histogram of filesizes, 5dB/bucket,
1769                        for both literal and immutable files
1770  largest-directory: number of children in the largest directory
1771  largest-immutable-file: number of bytes in the largest CHK file
1772
1773 size-mutable-files is not implemented, because it would require extra
1774 queries to each mutable file to get their size. This may be implemented in
1775 the future.
1776
1777 Assuming no sharing, the basic space consumed by a single root directory is
1778 the sum of size-immutable-files, size-mutable-files, and size-directories.
1779 The actual disk space used by the shares is larger, because of the
1780 following sources of overhead::
1781
1782  integrity data
1783  expansion due to erasure coding
1784  share management data (leases)
1785  backend (ext3) minimum block size
1786
1787``POST $URL?t=stream-manifest``
1788
1789 This operation performs a recursive walk of all files and directories
1790 reachable from the given starting point. For each such unique object
1791 (duplicates are skipped), a single line of JSON is emitted to the HTTP
1792 response channel (or an error indication, see below). When the walk is
1793 complete, a final line of JSON is emitted which contains the accumulated
1794 file-size/count "deep-stats" data.
1795
1796 A CLI tool can split the response stream on newlines into "response units",
1797 and parse each response unit as JSON. Each such parsed unit will be a
1798 dictionary, and will contain at least the "type" key: a string, one of
1799 "file", "directory", or "stats".
1800
1801 For all units that have a type of "file" or "directory", the dictionary will
1802 contain the following keys::
1803
1804  "path": a list of strings, with the path that is traversed to reach the
1805          object
1806  "cap": a write-cap URI for the file or directory, if available, else a
1807         read-cap URI
1808  "verifycap": a verify-cap URI for the file or directory
1809  "repaircap": an URI for the weakest cap that can still be used to repair
1810               the object
1811  "storage-index": a base32 storage index for the object
1812
1813 Note that non-distributed files (i.e. LIT files) will have values of None
1814 for verifycap, repaircap, and storage-index, since these files can neither
1815 be verified nor repaired, and are not stored on the storage servers.
1816
1817 The last unit in the stream will have a type of "stats", and will contain
1818 the keys described in the "start-deep-stats" operation, below.
1819
1820 If any errors occur during the traversal (specifically if a directory is
1821 unrecoverable, such that further traversal is not possible), an error
1822 indication is written to the response body, instead of the usual line of
1823 JSON. This error indication line will begin with the string "ERROR:" (in all
1824 caps), and contain a summary of the error on the rest of the line. The
1825 remaining lines of the response body will be a python exception. The client
1826 application should look for the ERROR: and stop processing JSON as soon as
1827 it is seen. The line just before the ERROR: will describe the directory that
1828 was untraversable, since the manifest entry is emitted to the HTTP response
1829 body before the child is traversed.
1830
1831
1832Other Useful Pages
1833==================
1834
1835The portion of the web namespace that begins with "/uri" (and "/named") is
1836dedicated to giving users (both humans and programs) access to the Tahoe-LAFS
1837file store. The rest of the namespace provides status information about the
1838state of the Tahoe-LAFS node.
1839
1840``GET /``   (the root page)
1841
1842This is the "Welcome Page", and contains a few distinct sections::
1843
1844 Node information: library versions, local nodeid, services being provided.
1845
1846 File store access forms: create a new directory, view a file/directory by
1847                          URI, upload a file (unlinked), download a file by
1848                          URI.
1849
1850 Grid status: introducer information, helper information, connected storage
1851              servers.
1852
1853``GET /?t=json``   (the json welcome page)
1854
1855This is the "json Welcome Page", and contains connectivity status
1856of the introducer(s) and storage server(s), here's an example::
1857
1858  {
1859   "introducers": {
1860    "statuses": []
1861   },
1862   "servers": [{
1863     "nodeid": "other_nodeid",
1864     "available_space": 123456,
1865     "nickname": "George \u263b",
1866     "version": "1.0",
1867     "connection_status": "summary",
1868     "last_received_data": 1487811257
1869    }]
1870  }
1871
1872
1873The above json ``introducers`` section includes a list of
1874introducer connectivity status messages.
1875
1876The above json ``servers`` section is an array with map elements.  Each map
1877has the following properties:
1878
18791. ``nodeid`` - an identifier derived from the node's public key
18802. ``available_space`` - the available space in bytes expressed as an integer
18813. ``nickname`` - the storage server nickname
18824. ``version`` - the storage server Tahoe-LAFS version
18835. ``connection_status`` - connectivity status
18846. ``last_received_data`` - the time when data was last received,
1885   expressed in seconds since epoch
1886
1887``GET /status/``
1888
1889 This page lists all active uploads and downloads, and contains a short list
1890 of recent upload/download operations. Each operation has a link to a page
1891 that describes file sizes, servers that were involved, and the time consumed
1892 in each phase of the operation.
1893
1894 A GET of /status/?t=json will contain a machine-readable subset of the same
1895 data. It returns a JSON-encoded dictionary. The only key defined at this
1896 time is "active", with a value that is a list of operation dictionaries, one
1897 for each active operation. Once an operation is completed, it will no longer
1898 appear in data["active"] .
1899
1900 Each op-dict contains a "type" key, one of "upload", "download",
1901 "mapupdate", "publish", or "retrieve" (the first two are for immutable
1902 files, while the latter three are for mutable files and directories).
1903
1904 The "upload" op-dict will contain the following keys::
1905
1906  type (string): "upload"
1907  storage-index-string (string): a base32-encoded storage index
1908  total-size (int): total size of the file
1909  status (string): current status of the operation
1910  progress-hash (float): 1.0 when the file has been hashed
1911  progress-ciphertext (float): 1.0 when the file has been encrypted.
1912  progress-encode-push (float): 1.0 when the file has been encoded and
1913                                pushed to the storage servers. For helper
1914                                uploads, the ciphertext value climbs to 1.0
1915                                first, then encoding starts. For unassisted
1916                                uploads, ciphertext and encode-push progress
1917                                will climb at the same pace.
1918
1919 The "download" op-dict will contain the following keys::
1920
1921  type (string): "download"
1922  storage-index-string (string): a base32-encoded storage index
1923  total-size (int): total size of the file
1924  status (string): current status of the operation
1925  progress (float): 1.0 when the file has been fully downloaded
1926
1927 Front-ends which want to report progress information are advised to simply
1928 average together all the progress-* indicators. A slightly more accurate
1929 value can be found by ignoring the progress-hash value (since the current
1930 implementation hashes synchronously, so clients will probably never see
1931 progress-hash!=1.0).
1932
1933``GET /helper_status/``
1934
1935 If the node is running a helper (i.e. if [helper]enabled is set to True in
1936 tahoe.cfg), then this page will provide a list of all the helper operations
1937 currently in progress. If "?t=json" is added to the URL, it will return a
1938 JSON-formatted list of helper statistics, which can then be used to produce
1939 graphs to indicate how busy the helper is.
1940
1941``GET /statistics/``
1942
1943 This page provides "node statistics", which are collected from a variety of
1944 sources::
1945
1946   load_monitor: every second, the node schedules a timer for one second in
1947                 the future, then measures how late the subsequent callback
1948                 is. The "load_average" is this tardiness, measured in
1949                 seconds, averaged over the last minute. It is an indication
1950                 of a busy node, one which is doing more work than can be
1951                 completed in a timely fashion. The "max_load" value is the
1952                 highest value that has been seen in the last 60 seconds.
1953
1954   cpu_monitor: every minute, the node uses time.clock() to measure how much
1955                CPU time it has used, and it uses this value to produce
1956                1min/5min/15min moving averages. These values range from 0%
1957                (0.0) to 100% (1.0), and indicate what fraction of the CPU
1958                has been used by the Tahoe node. Not all operating systems
1959                provide meaningful data to time.clock(): they may report 100%
1960                CPU usage at all times.
1961
1962   uploader: this counts how many immutable files (and bytes) have been
1963             uploaded since the node was started
1964
1965   downloader: this counts how many immutable files have been downloaded
1966               since the node was started
1967
1968   publishes: this counts how many mutable files (including directories) have
1969              been modified since the node was started
1970
1971   retrieves: this counts how many mutable files (including directories) have
1972              been read since the node was started
1973
1974 There are other statistics that are tracked by the node. The "raw stats"
1975 section shows a formatted dump of all of them.
1976
1977 By adding "?t=json" to the URL, the node will return a JSON-formatted
1978 dictionary of stats values, which can be used by other tools to produce
1979 graphs of node behavior. The misc/munin/ directory in the source
1980 distribution provides some tools to produce these graphs.
1981
1982``GET /``   (introducer status)
1983
1984 For Introducer nodes, the welcome page displays information about both
1985 clients and servers which are connected to the introducer. Servers make
1986 "service announcements", and these are listed in a table. Clients will
1987 subscribe to hear about service announcements, and these subscriptions are
1988 listed in a separate table. Both tables contain information about what
1989 version of Tahoe is being run by the remote node, their advertised and
1990 outbound IP addresses, their nodeid and nickname, and how long they have
1991 been available.
1992
1993 By adding "?t=json" to the URL, the node will return a JSON-formatted
1994 dictionary of stats values, which can be used to produce graphs of connected
1995 clients over time. This dictionary has the following keys::
1996
1997  ["subscription_summary"] : a dictionary mapping service name (like
1998                             "storage") to an integer with the number of
1999                             clients that have subscribed to hear about that
2000                             service
2001  ["announcement_summary"] : a dictionary mapping service name to an integer
2002                             with the number of servers which are announcing
2003                             that service
2004  ["announcement_distinct_hosts"] : a dictionary mapping service name to an
2005                                    integer which represents the number of
2006                                    distinct hosts that are providing that
2007                                    service. If two servers have announced
2008                                    FURLs which use the same hostnames (but
2009                                    different ports and tubids), they are
2010                                    considered to be on the same host.
2011
2012
2013Static Files in /public_html
2014============================
2015
2016The web-API server will take any request for a URL that starts with /static
2017and serve it from a configurable directory which defaults to
2018$BASEDIR/public_html . This is configured by setting the "[node]web.static"
2019value in $BASEDIR/tahoe.cfg . If this is left at the default value of
2020"public_html", then http://127.0.0.1:3456/static/subdir/foo.html will be
2021served with the contents of the file $BASEDIR/public_html/subdir/foo.html .
2022
2023This can be useful to serve a javascript application which provides a
2024prettier front-end to the rest of the Tahoe web-API.
2025
2026
2027Safety and Security Issues -- Names vs. URIs
2028============================================
2029
2030Summary: use explicit file- and dir- caps whenever possible, to reduce the
2031potential for surprises when the file store structure is changed.
2032
2033Tahoe-LAFS provides a mutable file store, but the ways that the store can
2034change are limited. The only things that can change are:
2035
2036* the mapping from child names to child objects inside mutable directories
2037  (by adding a new child, removing an existing child, or changing an
2038  existing child to point to a different object)
2039* the contents of mutable files
2040
2041Obviously if you query for information about the file store and then act
2042to change it (such as by getting a listing of the contents of a mutable
2043directory and then adding a file to the directory), then the store might
2044have been changed after you queried it and before you acted upon it.
2045However, if you use the URI instead of the pathname of an object when you
2046act upon the object, then it will be the same object; only its contents
2047can change (if it is mutable). If, on the other hand, you act upon the
2048object using its pathname, then a different object might be in that place,
2049which can result in more kinds of surprises.
2050
2051For example, suppose you are writing code which recursively downloads the
2052contents of a directory. The first thing your code does is fetch the listing
2053of the contents of the directory. For each child that it fetched, if that
2054child is a file then it downloads the file, and if that child is a directory
2055then it recurses into that directory. Now, if the download and the recurse
2056actions are performed using the child's name, then the results might be
2057wrong, because for example a child name that pointed to a subdirectory when
2058you listed the directory might have been changed to point to a file (in which
2059case your attempt to recurse into it would result in an error), or a child
2060name that pointed to a file when you listed the directory might now point to
2061a subdirectory (in which case your attempt to download the child would result
2062in a file containing HTML text describing the subdirectory!).
2063
2064If your recursive algorithm uses the URI of the child instead of the name of
2065the child, then those kinds of mistakes just can't happen. Note that both the
2066child's name and the child's URI are included in the results of listing the
2067parent directory, so it isn't any harder to use the URI for this purpose.
2068
2069The read and write caps in a given directory node are separate URIs, and
2070can't be assumed to point to the same object even if they were retrieved in
2071the same operation (although the web-API server attempts to ensure this
2072in most cases). If you need to rely on that property, you should explicitly
2073verify it. More generally, you should not make assumptions about the
2074internal consistency of the contents of mutable directories. As a result
2075of the signatures on mutable object versions, it is guaranteed that a given
2076version was written in a single update, but -- as in the case of a file --
2077the contents may have been chosen by a malicious writer in a way that is
2078designed to confuse applications that rely on their consistency.
2079
2080In general, use names if you want "whatever object (whether file or
2081directory) is found by following this name (or sequence of names) when my
2082request reaches the server". Use URIs if you want "this particular object".
2083
2084
2085Concurrency Issues
2086==================
2087
2088Tahoe uses both mutable and immutable files. Mutable files can be created
2089explicitly by doing an upload with ?mutable=true added, or implicitly by
2090creating a new directory (since a directory is just a special way to
2091interpret a given mutable file).
2092
2093Mutable files suffer from the same consistency-vs-availability tradeoff that
2094all distributed data storage systems face. It is not possible to
2095simultaneously achieve perfect consistency and perfect availability in the
2096face of network partitions (servers being unreachable or faulty).
2097
2098Tahoe tries to achieve a reasonable compromise, but there is a basic rule in
2099place, known as the Prime Coordination Directive: "Don't Do That". What this
2100means is that if write-access to a mutable file is available to several
2101parties, then those parties are responsible for coordinating their activities
2102to avoid multiple simultaneous updates. This could be achieved by having
2103these parties talk to each other and using some sort of locking mechanism, or
2104by serializing all changes through a single writer.
2105
2106The consequences of performing uncoordinated writes can vary. Some of the
2107writers may lose their changes, as somebody else wins the race condition. In
2108many cases the file will be left in an "unhealthy" state, meaning that there
2109are not as many redundant shares as we would like (reducing the reliability
2110of the file against server failures). In the worst case, the file can be left
2111in such an unhealthy state that no version is recoverable, even the old ones.
2112It is this small possibility of data loss that prompts us to issue the Prime
2113Coordination Directive.
2114
2115Tahoe nodes implement internal serialization to make sure that a single Tahoe
2116node cannot conflict with itself. For example, it is safe to issue two
2117directory modification requests to a single tahoe node's web-API server at the
2118same time, because the Tahoe node will internally delay one of them until
2119after the other has finished being applied. (This feature was introduced in
2120Tahoe-1.1; back with Tahoe-1.0 the web client was responsible for serializing
2121web requests themselves).
2122
2123For more details, please see the "Consistency vs Availability" and "The Prime
2124Coordination Directive" sections of :doc:`../specifications/mutable`.
2125
2126
2127Access Blacklist
2128================
2129
2130Gateway nodes may find it necessary to prohibit access to certain files. The
2131web-API has a facility to block access to filecaps by their storage index,
2132returning a 403 "Forbidden" error instead of the original file.
2133
2134This blacklist is recorded in $NODEDIR/access.blacklist, and contains one
2135blocked file per line. Comment lines (starting with ``#``) are ignored. Each
2136line consists of the storage-index (in the usual base32 format as displayed
2137by the "More Info" page, or by the "tahoe debug dump-cap" command), followed
2138by whitespace, followed by a reason string, which will be included in the 403
2139error message. This could hold a URL to a page that explains why the file is
2140blocked, for example.
2141
2142So for example, if you found a need to block access to a file with filecap
2143``URI:CHK:n7r3m6wmomelk4sep3kw5cvduq:os7ijw5c3maek7pg65e5254k2fzjflavtpejjyhshpsxuqzhcwwq:3:20:14861``,
2144you could do the following::
2145
2146 tahoe debug dump-cap URI:CHK:n7r3m6wmomelk4sep3kw5cvduq:os7ijw5c3maek7pg65e5254k2fzjflavtpejjyhshpsxuqzhcwwq:3:20:14861
2147 -> storage index: whpepioyrnff7orecjolvbudeu
2148 echo "whpepioyrnff7orecjolvbudeu my puppy told me to" >>$NODEDIR/access.blacklist
2149 # ... restart the node to re-read configuration ...
2150 tahoe get URI:CHK:n7r3m6wmomelk4sep3kw5cvduq:os7ijw5c3maek7pg65e5254k2fzjflavtpejjyhshpsxuqzhcwwq:3:20:14861
2151 -> error, 403 Access Prohibited: my puppy told me to
2152
2153The ``access.blacklist`` file will be checked each time a file or directory
2154is accessed: the file's ``mtime`` is used to decide whether it need to be
2155reloaded. Therefore no node restart is necessary when creating the initial
2156blacklist, nor when adding second, third, or additional entries to the list.
2157When modifying the file, be careful to update it atomically, otherwise a
2158request may arrive while the file is only halfway written, and the partial
2159file may be incorrectly parsed.
2160
2161The blacklist is applied to all access paths (including SFTP and CLI
2162operations), not just the web-API. The blacklist also applies to directories.
2163If a directory is blacklisted, the gateway will refuse access to both that
2164directory and any child files/directories underneath it, when accessed via
2165"DIRCAP/SUBDIR/FILENAME" -style URLs. Users who go directly to the child
2166file/dir will bypass the blacklist.
2167
2168The node will log the SI of the file being blocked, and the reason code, into
2169the ``logs/twistd.log`` file.
2170
2171URLs and HTTP and UTF-8
2172=======================
2173
2174.. _urls-and-utf8:
2175
2176 HTTP does not provide a mechanism to specify the character set used to
2177 encode non-ASCII names in URLs (`RFC3986#2.1`_).  We prefer the convention
2178 that the ``filename=`` argument shall be a URL-escaped UTF-8 encoded Unicode
2179 string.  For example, suppose we want to provoke the server into using a
2180 filename of "f i a n c e-acute e" (i.e. f i a n c U+00E9 e). The UTF-8
2181 encoding of this is 0x66 0x69 0x61 0x6e 0x63 0xc3 0xa9 0x65 (or
2182 "fianc\\xC3\\xA9e", as python's ``repr()`` function would show). To encode
2183 this into a URL, the non-printable characters must be escaped with the
2184 urlencode ``%XX`` mechanism, giving us "fianc%C3%A9e". Thus, the first line
2185 of the HTTP request will be "``GET
2186 /uri/CAP...?save=true&filename=fianc%C3%A9e HTTP/1.1``". Not all browsers
2187 provide this: IE7 by default uses the Latin-1 encoding, which is "fianc%E9e"
2188 (although it has a configuration option to send URLs as UTF-8).
2189
2190 The response header will need to indicate a non-ASCII filename. The actual
2191 mechanism to do this is not clear. For ASCII filenames, the response header
2192 would look like::
2193
2194  Content-Disposition: attachment; filename="english.txt"
2195
2196 If Tahoe were to enforce the UTF-8 convention, it would need to decode the
2197 URL argument into a Unicode string, and then encode it back into a sequence
2198 of bytes when creating the response header. One possibility would be to use
2199 unencoded UTF-8. Developers suggest that IE7 might accept this::
2200
2201  #1: Content-Disposition: attachment; filename="fianc\xC3\xA9e"
2202    (note, the last four bytes of that line, not including the newline, are
2203    0xC3 0xA9 0x65 0x22)
2204
2205 `RFC2231#4`_ (dated 1997): suggests that the following might work, and `some
2206 developers have reported`_ that it is supported by Firefox (but not IE7)::
2207
2208  #2: Content-Disposition: attachment; filename*=utf-8''fianc%C3%A9e
2209
2210 My reading of `RFC2616#19.5.1`_ (which defines Content-Disposition) says
2211 that the filename= parameter is defined to be wrapped in quotes (presumably
2212 to allow spaces without breaking the parsing of subsequent parameters),
2213 which would give us::
2214
2215  #3: Content-Disposition: attachment; filename*=utf-8''"fianc%C3%A9e"
2216
2217 However this is contrary to the examples in the email thread listed above.
2218
2219 Developers report that IE7 (when it is configured for UTF-8 URL encoding,
2220 which is not the default in Asian countries), will accept::
2221
2222  #4: Content-Disposition: attachment; filename=fianc%C3%A9e
2223
2224 However, for maximum compatibility, Tahoe simply copies bytes from the URL
2225 into the response header, rather than enforcing the UTF-8 convention. This
2226 means it does not try to decode the filename from the URL argument, nor does
2227 it encode the filename into the response header.
2228
2229.. _RFC3986#2.1: https://tools.ietf.org/html/rfc3986#section-2.1
2230.. _RFC2231#4: https://tools.ietf.org/html/rfc2231#section-4
2231.. _some developers have reported: http://markmail.org/message/dsjyokgl7hv64ig3
2232.. _RFC2616#19.5.1: https://tools.ietf.org/html/rfc2616#section-19.5.1
Note: See TracBrowser for help on using the repository browser.