]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - docs/frontends/webapi.txt
8cc9288f63c2b987b4189cae8d786284886a03d2
[tahoe-lafs/tahoe-lafs.git] / docs / frontends / webapi.txt
1
2 = The Tahoe REST-ful Web API =
3
4 1. Enabling the web-API port
5 2. Basic Concepts: GET, PUT, DELETE, POST
6 3. URLs, Machine-Oriented Interfaces
7 4. Browser Operations: Human-Oriented Interfaces
8 5. Welcome / Debug / Status pages
9 6. Static Files in /public_html
10 7. Safety and security issues -- names vs. URIs
11 8. Concurrency Issues
12
13
14 == Enabling the web-API port ==
15
16 Every Tahoe node is capable of running a built-in HTTP server. To enable
17 this, just write a port number into the "[node]web.port" line of your node's
18 tahoe.cfg file. For example, writing "web.port = 3456" into the "[node]"
19 section of $NODEDIR/tahoe.cfg will cause the node to run a webserver on port
20 3456.
21
22 This string is actually a Twisted "strports" specification, meaning you can
23 get more control over the interface to which the server binds by supplying
24 additional arguments. For more details, see the documentation on
25 twisted.application.strports:
26 http://twistedmatrix.com/documents/current/api/twisted.application.strports.html
27
28 Writing "tcp:3456:interface=127.0.0.1" into the web.port line does the same
29 but binds to the loopback interface, ensuring that only the programs on the
30 local host can connect. Using
31 "ssl:3456:privateKey=mykey.pem:certKey=cert.pem" runs an SSL server.
32
33 This webport can be set when the node is created by passing a --webport
34 option to the 'tahoe create-client' command. By default, the node listens on
35 port 3456, on the loopback (127.0.0.1) interface.
36
37 == Basic Concepts ==
38
39 As described in architecture.txt, each file and directory in a Tahoe virtual
40 filesystem is referenced by an identifier that combines the designation of
41 the object with the authority to do something with it (such as read or modify
42 the contents). This identifier is called a "read-cap" or "write-cap",
43 depending upon whether it enables read-only or read-write access. These
44 "caps" are also referred to as URIs.
45
46 The Tahoe web-based API is "REST-ful", meaning it implements the concepts of
47 "REpresentational State Transfer": the original scheme by which the World
48 Wide Web was intended to work. Each object (file or directory) is referenced
49 by a URL that includes the read- or write- cap. HTTP methods (GET, PUT, and
50 DELETE) are used to manipulate these objects. You can think of the URL as a
51 noun, and the method as a verb.
52
53 In REST, the GET method is used to retrieve information about an object, or
54 to retrieve some representation of the object itself. When the object is a
55 file, the basic GET method will simply return the contents of that file.
56 Other variations (generally implemented by adding query parameters to the
57 URL) will return information about the object, such as metadata. GET
58 operations are required to have no side-effects.
59
60 PUT is used to upload new objects into the filesystem, or to replace an
61 existing object. DELETE it used to delete objects from the filesystem. Both
62 PUT and DELETE are required to be idempotent: performing the same operation
63 multiple times must have the same side-effects as only performing it once.
64
65 POST is used for more complicated actions that cannot be expressed as a GET,
66 PUT, or DELETE. POST operations can be thought of as a method call: sending
67 some message to the object referenced by the URL. In Tahoe, POST is also used
68 for operations that must be triggered by an HTML form (including upload and
69 delete), because otherwise a regular web browser has no way to accomplish
70 these tasks. In general, everything that can be done with a PUT or DELETE can
71 also be done with a POST.
72
73 Tahoe's web API is designed for two different consumers. The first is a
74 program that needs to manipulate the virtual file system. Such programs are
75 expected to use the RESTful interface described above. The second is a human
76 using a standard web browser to work with the filesystem. This user is given
77 a series of HTML pages with links to download files, and forms that use POST
78 actions to upload, rename, and delete files.
79
80 == URLs ==
81
82 Tahoe uses a variety of read- and write- caps to identify files and
83 directories. The most common of these is the "immutable file read-cap", which
84 is used for most uploaded files. These read-caps look like the following:
85
86  URI:CHK:ime6pvkaxuetdfah2p2f35pe54:4btz54xk3tew6nd4y2ojpxj4m6wxjqqlwnztgre6gnjgtucd5r4a:3:10:202
87
88 The next most common is a "directory write-cap", which provides both read and
89 write access to a directory, and look like this:
90
91  URI:DIR2:djrdkfawoqihigoett4g6auz6a:jx5mplfpwexnoqff7y5e4zjus4lidm76dcuarpct7cckorh2dpgq
92
93 There are also "directory read-caps", which start with "URI:DIR2-RO:", and
94 give read-only access to a directory. Finally there are also mutable file
95 read- and write- caps, which start with "URI:SSK", and give access to mutable
96 files.
97
98 (later versions of Tahoe will make these strings shorter, and will remove the
99 unfortunate colons, which must be escaped when these caps are embedded in
100 URLs).
101
102 To refer to any Tahoe object through the web API, you simply need to combine
103 a prefix (which indicates the HTTP server to use) with the cap (which
104 indicates which object inside that server to access). Since the default Tahoe
105 webport is 3456, the most common prefix is one that will use a local node
106 listening on this port:
107
108  http://127.0.0.1:3456/uri/ + $CAP
109
110 So, to access the directory named above (which happens to be the
111 publically-writable sample directory on the Tahoe test grid, described at
112 http://allmydata.org/trac/tahoe/wiki/TestGrid), the URL would be:
113
114  http://127.0.0.1:3456/uri/URI%3ADIR2%3Adjrdkfawoqihigoett4g6auz6a%3Ajx5mplfpwexnoqff7y5e4zjus4lidm76dcuarpct7cckorh2dpgq/
115
116 (note that the colons in the directory-cap are url-encoded into "%3A"
117 sequences).
118
119 Likewise, to access the file named above, use:
120
121  http://127.0.0.1:3456/uri/URI%3ACHK%3Aime6pvkaxuetdfah2p2f35pe54%3A4btz54xk3tew6nd4y2ojpxj4m6wxjqqlwnztgre6gnjgtucd5r4a%3A3%3A10%3A202
122
123 In the rest of this document, we'll use "$DIRCAP" as shorthand for a read-cap
124 or write-cap that refers to a directory, and "$FILECAP" to abbreviate a cap
125 that refers to a file (whether mutable or immutable). So those URLs above can
126 be abbreviated as:
127
128  http://127.0.0.1:3456/uri/$DIRCAP/
129  http://127.0.0.1:3456/uri/$FILECAP
130
131 The operation summaries below will abbreviate these further, by eliding the
132 server prefix. They will be displayed like this:
133
134  /uri/$DIRCAP/
135  /uri/$FILECAP
136
137
138 === Child Lookup ===
139
140 Tahoe directories contain named children, just like directories in a regular
141 local filesystem. These children can be either files or subdirectories.
142
143 If you have a Tahoe URL that refers to a directory, and want to reference a
144 named child inside it, just append the child name to the URL. For example, if
145 our sample directory contains a file named "welcome.txt", we can refer to
146 that file with:
147
148  http://127.0.0.1:3456/uri/$DIRCAP/welcome.txt
149
150 (or http://127.0.0.1:3456/uri/URI%3ADIR2%3Adjrdkfawoqihigoett4g6auz6a%3Ajx5mplfpwexnoqff7y5e4zjus4lidm76dcuarpct7cckorh2dpgq/welcome.txt)
151
152 Multiple levels of subdirectories can be handled this way:
153
154  http://127.0.0.1:3456/uri/$DIRCAP/tahoe-source/docs/webapi.txt
155
156 In this document, when we need to refer to a URL that references a file using
157 this child-of-some-directory format, we'll use the following string:
158
159  /uri/$DIRCAP/[SUBDIRS../]FILENAME
160
161 The "[SUBDIRS../]" part means that there are zero or more (optional)
162 subdirectory names in the middle of the URL. The "FILENAME" at the end means
163 that this whole URL refers to a file of some sort, rather than to a
164 directory.
165
166 When we need to refer specifically to a directory in this way, we'll write:
167
168  /uri/$DIRCAP/[SUBDIRS../]SUBDIR
169
170
171 Note that all components of pathnames in URLs are required to be UTF-8
172 encoded, so "resume.doc" (with an acute accent on both E's) would be accessed
173 with:
174
175  http://127.0.0.1:3456/uri/$DIRCAP/r%C3%A9sum%C3%A9.doc
176
177 Also note that the filenames inside upload POST forms are interpreted using
178 whatever character set was provided in the conventional '_charset' field, and
179 defaults to UTF-8 if not otherwise specified. The JSON representation of each
180 directory contains native unicode strings. Tahoe directories are specified to
181 contain unicode filenames, and cannot contain binary strings that are not
182 representable as such.
183
184 All Tahoe operations that refer to existing files or directories must include
185 a suitable read- or write- cap in the URL: the wapi server won't add one
186 for you. If you don't know the cap, you can't access the file. This allows
187 the security properties of Tahoe caps to be extended across the wapi
188 interface.
189
190 == Slow Operations, Progress, and Cancelling ==
191
192 Certain operations can be expected to take a long time. The "t=deep-check",
193 described below, will recursively visit every file and directory reachable
194 from a given starting point, which can take minutes or even hours for
195 extremely large directory structures. A single long-running HTTP request is a
196 fragile thing: proxies, NAT boxes, browsers, and users may all grow impatient
197 with waiting and give up on the connection.
198
199 For this reason, long-running operations have an "operation handle", which
200 can be used to poll for status/progress messages while the operation
201 proceeds. This handle can also be used to cancel the operation. These handles
202 are created by the client, and passed in as a an "ophandle=" query argument
203 to the POST or PUT request which starts the operation. The following
204 operations can then be used to retrieve status:
205
206 GET /operations/$HANDLE?output=HTML   (with or without t=status)
207 GET /operations/$HANDLE?output=JSON   (same)
208
209  These two retrieve the current status of the given operation. Each operation
210  presents a different sort of information, but in general the page retrieved
211  will indicate:
212
213   * whether the operation is complete, or if it is still running
214   * how much of the operation is complete, and how much is left, if possible
215
216  Note that the final status output can be quite large: a deep-manifest of a
217  directory structure with 300k directories and 200k unique files is about
218  275MB of JSON, and might take two minutes to generate. For this reason, the
219  full status is not provided until the operation has completed.
220
221  The HTML form will include a meta-refresh tag, which will cause a regular
222  web browser to reload the status page about 60 seconds later. This tag will
223  be removed once the operation has completed.
224
225  There may be more status information available under
226  /operations/$HANDLE/$ETC : i.e., the handle forms the root of a URL space.
227
228 POST /operations/$HANDLE?t=cancel
229
230  This terminates the operation, and returns an HTML page explaining what was
231  cancelled. If the operation handle has already expired (see below), this
232  POST will return a 404, which indicates that the operation is no longer
233  running (either it was completed or terminated). The response body will be
234  the same as a GET /operations/$HANDLE on this operation handle, and the
235  handle will be expired immediately afterwards.
236
237 The operation handle will eventually expire, to avoid consuming an unbounded
238 amount of memory. The handle's time-to-live can be reset at any time, by
239 passing a retain-for= argument (with a count of seconds) to either the
240 initial POST that starts the operation, or the subsequent GET request which
241 asks about the operation. For example, if a 'GET
242 /operations/$HANDLE?output=JSON&retain-for=600' query is performed, the
243 handle will remain active for 600 seconds (10 minutes) after the GET was
244 received.
245
246 In addition, if the GET includes a release-after-complete=True argument, and
247 the operation has completed, the operation handle will be released
248 immediately.
249
250 If a retain-for= argument is not used, the default handle lifetimes are:
251
252  * handles will remain valid at least until their operation finishes
253  * uncollected handles for finished operations (i.e. handles for operations
254    which have finished but for which the GET page has not been accessed since
255    completion) will remain valid for one hour, or for the total time consumed
256    by the operation, whichever is greater.
257  * collected handles (i.e. the GET page has been retrieved at least once
258    since the operation completed) will remain valid for ten minutes.
259
260
261 == Programmatic Operations ==
262
263 Now that we know how to build URLs that refer to files and directories in a
264 Tahoe virtual filesystem, what sorts of operations can we do with those URLs?
265 This section contains a catalog of GET, PUT, DELETE, and POST operations that
266 can be performed on these URLs. This set of operations are aimed at programs
267 that use HTTP to communicate with a Tahoe node. The next section describes
268 operations that are intended for web browsers.
269
270 === Reading A File ===
271
272 GET /uri/$FILECAP
273 GET /uri/$DIRCAP/[SUBDIRS../]FILENAME
274
275  This will retrieve the contents of the given file. The HTTP response body
276  will contain the sequence of bytes that make up the file.
277
278  To view files in a web browser, you may want more control over the
279  Content-Type and Content-Disposition headers. Please see the next section
280  "Browser Operations", for details on how to modify these URLs for that
281  purpose.
282
283 === Writing/Uploading A File ===
284
285 PUT /uri/$FILECAP
286 PUT /uri/$DIRCAP/[SUBDIRS../]FILENAME
287
288  Upload a file, using the data from the HTTP request body, and add whatever
289  child links and subdirectories are necessary to make the file available at
290  the given location. Once this operation succeeds, a GET on the same URL will
291  retrieve the same contents that were just uploaded. This will create any
292  necessary intermediate subdirectories.
293
294  To use the /uri/$FILECAP form, $FILECAP be a write-cap for a mutable file.
295
296  In the /uri/$DIRCAP/[SUBDIRS../]FILENAME form, if the target file is a
297  writable mutable file, that files contents will be overwritten in-place. If
298  it is a read-cap for a mutable file, an error will occur. If it is an
299  immutable file, the old file will be discarded, and a new one will be put in
300  its place.
301
302  When creating a new file, if "mutable=true" is in the query arguments, the
303  operation will create a mutable file instead of an immutable one.
304
305  This returns the file-cap of the resulting file. If a new file was created
306  by this method, the HTTP response code (as dictated by rfc2616) will be set
307  to 201 CREATED. If an existing file was replaced or modified, the response
308  code will be 200 OK.
309
310  Note that the 'curl -T localfile http://127.0.0.1:3456/uri/$DIRCAP/foo.txt'
311  command can be used to invoke this operation.
312
313 PUT /uri
314
315  This uploads a file, and produces a file-cap for the contents, but does not
316  attach the file into the virtual drive. No directories will be modified by
317  this operation. The file-cap is returned as the body of the HTTP response.
318
319  If "mutable=true" is in the query arguments, the operation will create a
320  mutable file, and return its write-cap in the HTTP respose. The default is
321  to create an immutable file, returning the read-cap as a response.
322
323 === Creating A New Directory ===
324
325 POST /uri?t=mkdir
326 PUT /uri?t=mkdir
327
328  Create a new empty directory and return its write-cap as the HTTP response
329  body. This does not make the newly created directory visible from the
330  virtual drive. The "PUT" operation is provided for backwards compatibility:
331  new code should use POST.
332
333 POST /uri/$DIRCAP/[SUBDIRS../]SUBDIR?t=mkdir
334 PUT /uri/$DIRCAP/[SUBDIRS../]SUBDIR?t=mkdir
335
336  Create new directories as necessary to make sure that the named target
337  ($DIRCAP/SUBDIRS../SUBDIR) is a directory. This will create additional
338  intermediate directories as necessary. If the named target directory already
339  exists, this will make no changes to it.
340
341  This will return an error if a blocking file is present at any of the parent
342  names, preventing the server from creating the necessary parent directory.
343
344  The write-cap of the new directory will be returned as the HTTP response
345  body.
346
347 POST /uri/$DIRCAP/[SUBDIRS../]?t=mkdir&name=NAME
348
349  Create a new empty directory and attach it to the given existing directory.
350  This will create additional intermediate directories as necessary.
351
352  The URL of this form points to the parent of the bottom-most new directory,
353  whereas the previous form has a URL that points directly to the bottom-most
354  new directory.
355
356 === Get Information About A File Or Directory (as JSON) ===
357
358 GET /uri/$FILECAP?t=json
359 GET /uri/$DIRCAP?t=json
360 GET /uri/$DIRCAP/[SUBDIRS../]SUBDIR?t=json
361 GET /uri/$DIRCAP/[SUBDIRS../]FILENAME?t=json
362
363   This returns a machine-parseable JSON-encoded description of the given
364   object. The JSON always contains a list, and the first element of the list
365   is always a flag that indicates whether the referenced object is a file or a
366   directory. If it is a file, then the information includes file size and URI,
367   like this:
368
369    GET /uri/$FILECAP?t=json :
370    GET /uri/$DIRCAP/[SUBDIRS../]FILENAME?t=json :
371
372     [ "filenode", { "ro_uri": file_uri,
373                     "size": bytes,
374                     "mutable": false,
375                     "metadata": {"ctime": 1202777696.7564139,
376                                  "mtime": 1202777696.7564139
377                                  }
378                     } ]
379
380   If it is a directory, then it includes information about the children of
381   this directory, as a mapping from child name to a set of data about the
382   child (the same data that would appear in a corresponding GET?t=json of the
383   child itself). The child entries also include metadata about each child,
384   including creation- and modification- timestamps. The output looks like
385   this:
386
387    GET /uri/$DIRCAP?t=json :
388    GET /uri/$DIRCAP/[SUBDIRS../]SUBDIR?t=json :
389
390     [ "dirnode", { "rw_uri": read_write_uri,
391                    "ro_uri": read_only_uri,
392                    "mutable": true,
393                    "children": {
394                      "foo.txt": [ "filenode", { "ro_uri": uri,
395                                                 "size": bytes,
396                                                 "metadata": {
397                                                   "ctime": 1202777696.7564139,
398                                                   "mtime": 1202777696.7564139
399                                                  }
400                                                } ],
401                      "subdir":  [ "dirnode", { "rw_uri": rwuri,
402                                                "ro_uri": rouri,
403                                                 "metadata": {
404                                                   "ctime": 1202778102.7589991,
405                                                   "mtime": 1202778111.2160511,
406                                                  }
407                                               } ]
408                     } } ]
409
410   In the above example, note how 'children' is a dictionary in which the keys
411   are child names and the values depend upon whether the child is a file or a
412   directory. The value is mostly the same as the JSON representation of the
413   child object (except that directories do not recurse -- the "children"
414   entry of the child is omitted, and the directory view includes the metadata
415   that is stored on the directory edge).
416
417   Then the rw_uri field will be present in the information about a directory
418   if and only if you have read-write access to that directory,
419
420
421 === Attaching an existing File or Directory by its read- or write- cap ===
422
423 PUT /uri/$DIRCAP/[SUBDIRS../]CHILDNAME?t=uri
424
425  This attaches a child object (either a file or directory) to a specified
426  location in the virtual filesystem. The child object is referenced by its
427  read- or write- cap, as provided in the HTTP request body. This will create
428  intermediate directories as necessary.
429
430  This is similar to a UNIX hardlink: by referencing a previously-uploaded
431  file (or previously-created directory) instead of uploading/creating a new
432  one, you can create two references to the same object.
433
434  The read- or write- cap of the child is provided in the body of the HTTP
435  request, and this same cap is returned in the response body.
436
437  The default behavior is to overwrite any existing object at the same
438  location. To prevent this (and make the operation return an error instead of
439  overwriting), add a "replace=false" argument, as "?t=uri&replace=false".
440  With replace=false, this operation will return an HTTP 409 "Conflict" error
441  if there is already an object at the given location, rather than overwriting
442  the existing object. Note that "true", "t", and "1" are all synonyms for
443  "True", and "false", "f", and "0" are synonyms for "False". the parameter is
444  case-insensitive.
445
446 === Deleting a File or Directory ===
447
448 DELETE /uri/$DIRCAP/[SUBDIRS../]CHILDNAME
449
450   This removes the given name from its parent directory. CHILDNAME is the
451   name to be removed, and $DIRCAP/SUBDIRS.. indicates the directory that will
452   be modified.
453
454   Note that this does not actually delete the file or directory that the name
455   points to from the tahoe grid -- it only removes the named reference from
456   this directory. If there are other names in this directory or in other
457   directories that point to the resource, then it will remain accessible
458   through those paths. Even if all names pointing to this object are removed
459   from their parent directories, then someone with possession of its read-cap
460   can continue to access the object through that cap.
461
462   The object will only become completely unreachable once 1: there are no
463   reachable directories that reference it, and 2: nobody is holding a read-
464   or write- cap to the object. (This behavior is very similar to the way
465   hardlinks and anonymous files work in traditional unix filesystems).
466
467   This operation will not modify more than a single directory. Intermediate
468   directories which were implicitly created by PUT or POST methods will *not*
469   be automatically removed by DELETE.
470
471   This method returns the file- or directory- cap of the object that was just
472   removed.
473
474 == Browser Operations ==
475
476 This section describes the HTTP operations that provide support for humans
477 running a web browser. Most of these operations use HTML forms that use POST
478 to drive the Tahoe node.
479
480 Note that for all POST operations, the arguments listed can be provided
481 either as URL query arguments or as form body fields. URL query arguments are
482 separated from the main URL by "?", and from each other by "&". For example,
483 "POST /uri/$DIRCAP?t=upload&mutable=true". Form body fields are usually
484 specified by using <input type="hidden"> elements. For clarity, the
485 descriptions below display the most significant arguments as URL query args.
486
487 === Viewing A Directory (as HTML) ===
488
489 GET /uri/$DIRCAP/[SUBDIRS../]
490
491  This returns an HTML page, intended to be displayed to a human by a web
492  browser, which contains HREF links to all files and directories reachable
493  from this directory. These HREF links do not have a t= argument, meaning
494  that a human who follows them will get pages also meant for a human. It also
495  contains forms to upload new files, and to delete files and directories.
496  Those forms use POST methods to do their job.
497
498 === Viewing/Downloading a File ===
499
500 GET /uri/$FILECAP
501 GET /uri/$DIRCAP/[SUBDIRS../]FILENAME
502
503  This will retrieve the contents of the given file. The HTTP response body
504  will contain the sequence of bytes that make up the file.
505
506  If you want the HTTP response to include a useful Content-Type header,
507  either use the second form (which starts with a $DIRCAP), or add a
508  "filename=foo" query argument, like "GET /uri/$FILECAP?filename=foo.jpg".
509  The bare "GET /uri/$FILECAP" does not give the Tahoe node enough information
510  to determine a Content-Type (since Tahoe immutable files are merely
511  sequences of bytes, not typed+named file objects).
512
513  If the URL has both filename= and "save=true" in the query arguments, then
514  the server to add a "Content-Disposition: attachment" header, along with a
515  filename= parameter. When a user clicks on such a link, most browsers will
516  offer to let the user save the file instead of displaying it inline (indeed,
517  most browsers will refuse to display it inline). "true", "t", "1", and other
518  case-insensitive equivalents are all treated the same.
519
520  Character-set handling in URLs and HTTP headers is a dubious art[1]. For
521  maximum compatibility, Tahoe simply copies the bytes from the filename=
522  argument into the Content-Disposition header's filename= parameter, without
523  trying to interpret them in any particular way.
524
525
526 GET /named/$FILECAP/FILENAME
527
528  This is an alternate download form which makes it easier to get the correct
529  filename. The Tahoe server will provide the contents of the given file, with
530  a Content-Type header derived from the given filename. This form is used to
531  get browsers to use the "Save Link As" feature correctly, and also helps
532  command-line tools like "wget" and "curl" use the right filename. Note that
533  this form can *only* be used with file caps; it is an error to use a
534  directory cap after the /named/ prefix.
535
536 === Get Information About A File Or Directory (as HTML) ===
537
538 GET /uri/$FILECAP?t=info
539 GET /uri/$DIRCAP/?t=info
540 GET /uri/$DIRCAP/[SUBDIRS../]SUBDIR/?t=info
541 GET /uri/$DIRCAP/[SUBDIRS../]FILENAME?t=info
542
543   This returns a human-oriented HTML page with more detail about the selected
544   file or directory object. This page contains the following items:
545
546    object size
547    storage index
548    JSON representation
549    raw contents (text/plain)
550    access caps (URIs): verify-cap, read-cap, write-cap (for mutable objects)
551    check/verify/repair form
552    deep-check/deep-size/deep-stats/manifest (for directories)
553    replace-conents form (for mutable files)
554
555 === Creating a Directory ===
556
557 POST /uri?t=mkdir
558
559  This creates a new directory, but does not attach it to the virtual
560  filesystem.
561
562  If a "redirect_to_result=true" argument is provided, then the HTTP response
563  will cause the web browser to be redirected to a /uri/$DIRCAP page that
564  gives access to the newly-created directory. If you bookmark this page,
565  you'll be able to get back to the directory again in the future. This is the
566  recommended way to start working with a Tahoe server: create a new unlinked
567  directory (using redirect_to_result=true), then bookmark the resulting
568  /uri/$DIRCAP page. There is a "Create Directory" button on the Welcome page
569  to invoke this action.
570
571  If "redirect_to_result=true" is not provided (or is given a value of
572  "false"), then the HTTP response body will simply be the write-cap of the
573  new directory.
574
575 POST /uri/$DIRCAP/[SUBDIRS../]?t=mkdir&name=CHILDNAME
576
577  This creates a new directory as a child of the designated SUBDIR. This will
578  create additional intermediate directories as necessary.
579
580  If a "when_done=URL" argument is provided, the HTTP response will cause the
581  web browser to redirect to the given URL. This provides a convenient way to
582  return the browser to the directory that was just modified. Without a
583  when_done= argument, the HTTP response will simply contain the write-cap of
584  the directory that was just created.
585
586
587 === Uploading a File ===
588
589 POST /uri?t=upload
590
591  This uploads a file, and produces a file-cap for the contents, but does not
592  attach the file into the virtual drive. No directories will be modified by
593  this operation.
594
595  The file must be provided as the "file" field of an HTML encoded form body,
596  produced in response to an HTML form like this:
597   <form action="/uri" method="POST" enctype="multipart/form-data">
598    <input type="hidden" name="t" value="upload" />
599    <input type="file" name="file" />
600    <input type="submit" value="Upload Unlinked" />
601   </form>
602
603  If a "when_done=URL" argument is provided, the response body will cause the
604  browser to redirect to the given URL. If the when_done= URL has the string
605  "%(uri)s" in it, that string will be replaced by a URL-escaped form of the
606  newly created file-cap. (Note that without this substitution, there is no
607  way to access the file that was just uploaded).
608
609  The default (in the absence of when_done=) is to return an HTML page that
610  describes the results of the upload. This page will contain information
611  about which storage servers were used for the upload, how long each
612  operation took, etc.
613
614  If a "mutable=true" argument is provided, the operation will create a
615  mutable file, and the response body will contain the write-cap instead of
616  the upload results page. The default is to create an immutable file,
617  returning the upload results page as a response.
618
619
620 POST /uri/$DIRCAP/[SUBDIRS../]?t=upload
621
622  This uploads a file, and attaches it as a new child of the given directory.
623  The file must be provided as the "file" field of an HTML encoded form body,
624  produced in response to an HTML form like this:
625   <form action="." method="POST" enctype="multipart/form-data">
626    <input type="hidden" name="t" value="upload" />
627    <input type="file" name="file" />
628    <input type="submit" value="Upload" />
629   </form>
630
631  A "name=" argument can be provided to specify the new child's name,
632  otherwise it will be taken from the "filename" field of the upload form
633  (most web browsers will copy the last component of the original file's
634  pathname into this field). To avoid confusion, name= is not allowed to
635  contain a slash.
636
637  If there is already a child with that name, and it is a mutable file, then
638  its contents are replaced with the data being uploaded. If it is not a
639  mutable file, the default behavior is to remove the existing child before
640  creating a new one. To prevent this (and make the operation return an error
641  instead of overwriting the old child), add a "replace=false" argument, as
642  "?t=upload&replace=false". With replace=false, this operation will return an
643  HTTP 409 "Conflict" error if there is already an object at the given
644  location, rather than overwriting the existing object. Note that "true",
645  "t", and "1" are all synonyms for "True", and "false", "f", and "0" are
646  synonyms for "False". the parameter is case-insensitive.
647
648  This will create additional intermediate directories as necessary, although
649  since it is expected to be triggered by a form that was retrieved by "GET
650  /uri/$DIRCAP/[SUBDIRS../]", it is likely that the parent directory will
651  already exist.
652
653  If a "mutable=true" argument is provided, any new file that is created will
654  be a mutable file instead of an immutable one. <input type="checkbox"
655  name="mutable" /> will give the user a way to set this option.
656
657  If a "when_done=URL" argument is provided, the HTTP response will cause the
658  web browser to redirect to the given URL. This provides a convenient way to
659  return the browser to the directory that was just modified. Without a
660  when_done= argument, the HTTP response will simply contain the file-cap of
661  the file that was just uploaded (a write-cap for mutable files, or a
662  read-cap for immutable files).
663
664 POST /uri/$DIRCAP/[SUBDIRS../]FILENAME?t=upload
665
666  This also uploads a file and attaches it as a new child of the given
667  directory. It is a slight variant of the previous operation, as the URL
668  refers to the target file rather than the parent directory. It is otherwise
669  identical: this accepts mutable= and when_done= arguments too.
670
671 POST /uri/$FILECAP?t=upload
672
673  This modifies the contents of an existing mutable file in-place. An error is
674  signalled if $FILECAP does not refer to a mutable file. It behaves just like
675  the "PUT /uri/$FILECAP" form, but uses a POST for the benefit of HTML forms
676  in a web browser.
677
678 === Attaching An Existing File Or Directory (by URI) ===
679
680 POST /uri/$DIRCAP/[SUBDIRS../]?t=uri&name=CHILDNAME&uri=CHILDCAP
681
682  This attaches a given read- or write- cap "CHILDCAP" to the designated
683  directory, with a specified child name. This behaves much like the PUT t=uri
684  operation, and is a lot like a UNIX hardlink.
685
686  This will create additional intermediate directories as necessary, although
687  since it is expected to be triggered by a form that was retrieved by "GET
688  /uri/$DIRCAP/[SUBDIRS../]", it is likely that the parent directory will
689  already exist.
690
691 === Deleting A Child ===
692
693 POST /uri/$DIRCAP/[SUBDIRS../]?t=delete&name=CHILDNAME
694
695  This instructs the node to delete a child object (file or subdirectory) from
696  the given directory. Note that the entire subtree is removed. This is
697  somewhat like "rm -rf" (from the point of view of the parent), but other
698  references into the subtree will see that the child subdirectories are not
699  modified by this operation. Only the link from the given directory to its
700  child is severed.
701
702 === Renaming A Child ===
703
704 POST /uri/$DIRCAP/[SUBDIRS../]?t=rename&from_name=OLD&to_name=NEW
705
706  This instructs the node to rename a child of the given directory. This is
707  exactly the same as removing the child, then adding the same child-cap under
708  the new name. This operation cannot move the child to a different directory.
709
710  This operation will replace any existing child of the new name, making it
711  behave like the UNIX "mv -f" command.
712
713 === Other Utilities ===
714
715 GET /uri?uri=$CAP
716
717   This causes a redirect to /uri/$CAP, and retains any additional query
718   arguments (like filename= or save=). This is for the convenience of web
719   forms which allow the user to paste in a read- or write- cap (obtained
720   through some out-of-band channel, like IM or email).
721
722   Note that this form merely redirects to the specific file or directory
723   indicated by the $CAP: unlike the GET /uri/$DIRCAP form, you cannot
724   traverse to children by appending additional path segments to the URL.
725
726 GET /uri/$DIRCAP/[SUBDIRS../]?t=rename-form&name=$CHILDNAME
727
728   This provides a useful facility to browser-based user interfaces. It
729   returns a page containing a form targetting the "POST $DIRCAP t=rename"
730   functionality described above, with the provided $CHILDNAME present in the
731   'from_name' field of that form. I.e. this presents a form offering to
732   rename $CHILDNAME, requesting the new name, and submitting POST rename.
733
734 GET /uri/$DIRCAP/[SUBDIRS../]CHILDNAME?t=uri
735
736  This returns the file- or directory- cap for the specified object.
737
738 GET /uri/$DIRCAP/[SUBDIRS../]CHILDNAME?t=readonly-uri
739
740  This returns a read-only file- or directory- cap for the specified object.
741  If the object is an immutable file, this will return the same value as
742  t=uri.
743
744 === Debugging and Testing Features ===
745
746 These URLs are less-likely to be helpful to the casual Tahoe user, and are
747 mainly intended for developers.
748
749 POST $URL?t=check
750
751   This triggers the FileChecker to determine the current "health" of the
752   given file or directory, by counting how many shares are available. The
753   page that is returned will display the results. This can be used as a "show
754   me detailed information about this file" page.
755
756   If a verify=true argument is provided, the node will perform a more
757   intensive check, downloading and verifying every single bit of every share.
758
759   If an output=JSON argument is provided, the response will be
760   machine-readable JSON instead of human-oriented HTML. The data is a
761   dictionary with the following keys:
762
763    storage-index: a base32-encoded string with the objects's storage index,
764                   or an empty string for LIT files
765    summary: a string, with a one-line summary of the stats of the file
766    results: a dictionary that describes the state of the file. For LIT files,
767             this dictionary has only the 'healthy' key, which will always be
768             True. For distributed files, this dictionary has the following
769             keys:
770      count-shares-good: the number of good shares that were found
771      count-shares-needed: 'k', the number of shares required for recovery
772      count-shares-expected: 'N', the number of total shares generated
773      count-good-share-hosts: the number of distinct storage servers with
774                              good shares. If this number is less than
775                              count-shares-good, then some shares are doubled
776                              up, increasing the correlation of failures. This
777                              indicates that one or more shares should be
778                              moved to an otherwise unused server, if one is
779                              available.
780      count-wrong-shares: for mutable files, the number of shares for
781                          versions other than the 'best' one (highest
782                          sequence number, highest roothash). These are
783                          either old ...
784      count-recoverable-versions: for mutable files, the number of
785                                  recoverable versions of the file. For
786                                  a healthy file, this will equal 1.
787      count-unrecoverable-versions: for mutable files, the number of
788                                    unrecoverable versions of the file.
789                                    For a healthy file, this will be 0.
790      count-corrupt-shares: the number of shares with integrity failures
791      list-corrupt-shares: a list of "share locators", one for each share
792                           that was found to be corrupt. Each share locator
793                           is a list of (serverid, storage_index, sharenum).
794      needs-rebalancing: (bool) True if there are multiple shares on a single
795                         storage server, indicating a reduction in reliability
796                         that could be resolved by moving shares to new
797                         servers.
798      servers-responding: list of base32-encoded storage server identifiers,
799                          one for each server which responded to the share
800                          query.
801      healthy: (bool) True if the file is completely healthy, False otherwise.
802               Healthy files have at least N good shares. Overlapping shares
803               (indicated by count-good-share-hosts < count-shares-good) do not
804               currently cause a file to be marked unhealthy. If there are at
805               least N good shares, then corrupt shares do not cause the file to
806               be marked unhealthy, although the corrupt shares will be listed
807               in the results (list-corrupt-shares) and should be manually
808               removed to wasting time in subsequent downloads (as the
809               downloader rediscovers the corruption and uses alternate shares).
810      sharemap: dict mapping share identifier to list of serverids
811                (base32-encoded strings). This indicates which servers are
812                holding which shares. For immutable files, the shareid is
813                an integer (the share number, from 0 to N-1). For
814                immutable files, it is a string of the form
815                'seq%d-%s-sh%d', containing the sequence number, the
816                roothash, and the share number.
817
818 POST $URL?t=start-deep-check    (must add &ophandle=XYZ)
819
820   This initiates a recursive walk of all files and directories reachable from
821   the target, performing a check on each one just like t=check. The result
822   page will contain a summary of the results, including details on any
823   file/directory that was not fully healthy.
824
825   t=start-deep-check can only be invoked on a directory. An error (400
826   BAD_REQUEST) will be signalled if it is invoked on a file. The recursive
827   walker will deal with loops safely.
828
829   This accepts the same verify= argument as t=check.
830
831   Since this operation can take a long time (perhaps a second per object),
832   the ophandle= argument is required (see "Slow Operations, Progress, and
833   Cancelling" above). The response to this POST will be a redirect to the
834   corresponding /operations/$HANDLE page (with output=HTML or output=JSON to
835   match the output= argument given to the POST). The deep-check operation
836   will continue to run in the background, and the /operations page should be
837   used to find out when the operation is done.
838
839   Detailed check results for non-healthy files and directories will be
840   available under /operations/$HANDLE/$STORAGEINDEX, and the HTML status will
841   contain links to these detailed results.
842
843   The HTML /operations/$HANDLE page for incomplete operations will contain a
844   meta-refresh tag, set to 60 seconds, so that a browser which uses
845   deep-check will automatically poll until the operation has completed.
846
847   The JSON page (/options/$HANDLE?output=JSON) will contain a
848   machine-readable JSON dictionary with the following keys:
849
850    finished: a boolean, True if the operation is complete, else False. Some
851              of the remaining keys may not be present until the operation
852              is complete.
853    root-storage-index: a base32-encoded string with the storage index of the
854                        starting point of the deep-check operation
855    count-objects-checked: count of how many objects were checked. Note that
856                           non-distributed objects (i.e. small immutable LIT
857                           files) are not checked, since for these objects,
858                           the data is contained entirely in the URI.
859    count-objects-healthy: how many of those objects were completely healthy
860    count-objects-unhealthy: how many were damaged in some way
861    count-corrupt-shares: how many shares were found to have corruption,
862                          summed over all objects examined
863    list-corrupt-shares: a list of "share identifiers", one for each share
864                         that was found to be corrupt. Each share identifier
865                         is a list of (serverid, storage_index, sharenum).
866    list-unhealthy-files: a list of (pathname, check-results) tuples, for
867                          each file that was not fully healthy. 'pathname' is
868                          a list of strings (which can be joined by "/"
869                          characters to turn it into a single string),
870                          relative to the directory on which deep-check was
871                          invoked. The 'check-results' field is the same as
872                          that returned by t=check&output=JSON, described
873                          above.
874    stats: a dictionary with the same keys as the t=start-deep-stats command
875           (described below)
876
877 POST $URL?t=check&repair=true
878
879   This performs a health check of the given file or directory, and if the
880   checker determines that the object is not healthy (some shares are missing
881   or corrupted), it will perform a "repair". During repair, any missing
882   shares will be regenerated and uploaded to new servers.
883
884   This accepts the same verify=true argument as t=check. When an output=JSON
885   argument is provided, the machine-readable JSON response will contain the
886   following keys:
887
888    storage-index: a base32-encoded string with the objects's storage index,
889                   or an empty string for LIT files
890    repair-attempted: (bool) True if repair was attempted
891    repair-successful: (bool) True if repair was attempted and the file was
892                       fully healthy afterwards. False if no repair was
893                       attempted, or if a repair attempt failed.
894    pre-repair-results: a dictionary that describes the state of the file
895                        before any repair was performed. This contains exactly
896                        the same keys as the 'results' value of the t=check
897                        response, described above.
898    post-repair-results: a dictionary that describes the state of the file
899                         after any repair was performed. If no repair was
900                         performed, post-repair-results and pre-repair-results
901                         will be the same. This contains exactly the same keys
902                         as the 'results' value of the t=check response,
903                         described above.
904
905 POST $URL?t=start-deep-check&repair=true    (must add &ophandle=XYZ)
906
907   This triggers a recursive walk of all files and directories, performing a
908   t=check&repair=true on each one.
909
910   Like t=start-deep-check without the repair= argument, this can only be
911   invoked on a directory. An error (400 BAD_REQUEST) will be signalled if it
912   is invoked on a file. The recursive walker will deal with loops safely.
913
914   This accepts the same verify=true argument as t=start-deep-check. It uses
915   the same ophandle= mechanism as start-deep-check. When an output=JSON
916   argument is provided, the response will contain the following keys:
917
918    finished: (bool) True if the operation has completed, else False
919    root-storage-index: a base32-encoded string with the storage index of the
920                        starting point of the deep-check operation
921    count-objects-checked: count of how many objects were checked
922
923    count-objects-healthy-pre-repair: how many of those objects were completely
924                                      healthy, before any repair
925    count-objects-unhealthy-pre-repair: how many were damaged in some way
926    count-objects-healthy-post-repair: how many of those objects were completely
927                                        healthy, after any repair
928    count-objects-unhealthy-post-repair: how many were damaged in some way
929
930    count-repairs-attempted: repairs were attempted on this many objects.
931    count-repairs-successful: how many repairs resulted in healthy objects
932    count-repairs-unsuccessful: how many repairs resulted did not results in
933                                completely healthy objects
934    count-corrupt-shares-pre-repair: how many shares were found to have
935                                     corruption, summed over all objects
936                                     examined, before any repair
937    count-corrupt-shares-post-repair: how many shares were found to have
938                                      corruption, summed over all objects
939                                      examined, after any repair
940    list-corrupt-shares: a list of "share identifiers", one for each share
941                         that was found to be corrupt (before any repair).
942                         Each share identifier is a list of (serverid,
943                         storage_index, sharenum).
944    list-remaining-corrupt-shares: like list-corrupt-shares, but mutable shares
945                                   that were successfully repaired are not
946                                   included. These are shares that need
947                                   manual processing. Since immutable shares
948                                   cannot be modified by clients, all corruption
949                                   in immutable shares will be listed here.
950    list-unhealthy-files: a list of (pathname, check-results) tuples, for
951                          each file that was not fully healthy. 'pathname' is
952                          relative to the directory on which deep-check was
953                          invoked. The 'check-results' field is the same as
954                          that returned by t=check&repair=true&output=JSON,
955                          described above.
956    stats: a dictionary with the same keys as the t=start-deep-stats command
957           (described below)
958
959 POST $DIRURL?t=start-manifest    (must add &ophandle=XYZ)
960
961   This operation generates a "manfest" of the given directory tree, mostly
962   for debugging. This is a table of (path, filecap/dircap), for every object
963   reachable from the starting directory. The path will be slash-joined, and
964   the filecap/dircap will contain a link to the object in question. This page
965   gives immediate access to every object in the virtual filesystem subtree.
966
967   This operation uses the same ophandle= mechanism as deep-check. The
968   corresponding /operations/$HANDLE page has three different forms. The
969   default is output=HTML.
970
971   If output=text is added to the query args, the results will be a text/plain
972   list. The first line is special: it is either "finished: yes" or "finished:
973   no"; if the operation is not finished, you must periodically reload the
974   page until it completes. The rest of the results are a plaintext list, with
975   one file/dir per line, slash-separated, with the filecap/dircap separated
976   by a space.
977
978   If output=JSON is added to the queryargs, then the results will be a
979   JSON-formatted dictionary with six keys. Note that because large directory
980   structures can result in very large JSON results, the full results will not
981   be available until the operation is complete (i.e. until output["finished"]
982   is True):
983
984    finished (bool): if False then you must reload the page until True
985    origin_si (base32 str): the storage index of the starting point
986    manifest: list of (path, cap) tuples, where path is a list of strings.
987    verifycaps: list of (printable) verify cap strings
988    storage-index: list of (base32) storage index strings
989    stats: a dictionary with the same keys as the t=start-deep-stats command
990           (described below)
991
992 POST $DIRURL?t=start-deep-size    (must add &ophandle=XYZ)
993
994   This operation generates a number (in bytes) containing the sum of the
995   filesize of all directories and immutable files reachable from the given
996   directory. This is a rough lower bound of the total space consumed by this
997   subtree. It does not include space consumed by mutable files, nor does it
998   take expansion or encoding overhead into account. Later versions of the
999   code may improve this estimate upwards.
1000
1001   The /operations/$HANDLE status output consists of two lines of text:
1002
1003    finished: yes
1004    size: 1234
1005
1006 POST $DIRURL?t=start-deep-stats    (must add &ophandle=XYZ)
1007
1008   This operation performs a recursive walk of all files and directories
1009   reachable from the given directory, and generates a collection of
1010   statistics about those objects.
1011
1012   The result (obtained from the /operations/$OPHANDLE page) is a
1013   JSON-serialized dictionary with the following keys (note that some of these
1014   keys may be missing until 'finished' is True):
1015
1016    finished: (bool) True if the operation has finished, else False
1017    count-immutable-files: count of how many CHK files are in the set
1018    count-mutable-files: same, for mutable files (does not include directories)
1019    count-literal-files: same, for LIT files (data contained inside the URI)
1020    count-files: sum of the above three
1021    count-directories: count of directories
1022    size-immutable-files: total bytes for all CHK files in the set, =deep-size
1023    size-mutable-files (TODO): same, for current version of all mutable files
1024    size-literal-files: same, for LIT files
1025    size-directories: size of directories (includes size-literal-files)
1026    size-files-histogram: list of (minsize, maxsize, count) buckets,
1027                          with a histogram of filesizes, 5dB/bucket,
1028                          for both literal and immutable files
1029    largest-directory: number of children in the largest directory
1030    largest-immutable-file: number of bytes in the largest CHK file
1031
1032   size-mutable-files is not implemented, because it would require extra
1033   queries to each mutable file to get their size. This may be implemented in
1034   the future.
1035
1036   Assuming no sharing, the basic space consumed by a single root directory is
1037   the sum of size-immutable-files, size-mutable-files, and size-directories.
1038   The actual disk space used by the shares is larger, because of the
1039   following sources of overhead:
1040
1041    integrity data
1042    expansion due to erasure coding
1043    share management data (leases)
1044    backend (ext3) minimum block size
1045
1046 == Other Useful Pages ==
1047
1048 The portion of the web namespace that begins with "/uri" (and "/named") is
1049 dedicated to giving users (both humans and programs) access to the Tahoe
1050 virtual filesystem. The rest of the namespace provides status information
1051 about the state of the Tahoe node.
1052
1053 GET /   (the root page)
1054
1055 This is the "Welcome Page", and contains a few distinct sections:
1056
1057  Node information: library versions, local nodeid, services being provided.
1058
1059  Filesystem Access Forms: create a new directory, view a file/directory by
1060                           URI, upload a file (unlinked), download a file by
1061                           URI.
1062
1063  Grid Status: introducer information, helper information, connected storage
1064               servers.
1065
1066 GET /status/
1067
1068  This page lists all active uploads and downloads, and contains a short list
1069  of recent upload/download operations. Each operation has a link to a page
1070  that describes file sizes, servers that were involved, and the time consumed
1071  in each phase of the operation.
1072
1073  A GET of /status/?t=json will contain a machine-readable subset of the same
1074  data. It returns a JSON-encoded dictionary. The only key defined at this
1075  time is "active", with a value that is a list of operation dictionaries, one
1076  for each active operation. Once an operation is completed, it will no longer
1077  appear in data["active"] .
1078
1079  Each op-dict contains a "type" key, one of "upload", "download",
1080  "mapupdate", "publish", or "retrieve" (the first two are for immutable
1081  files, while the latter three are for mutable files and directories).
1082
1083  The "upload" op-dict will contain the following keys:
1084
1085    type (string): "upload"
1086    storage-index-string (string): a base32-encoded storage index
1087    total-size (int): total size of the file
1088    status (string): current status of the operation
1089    progress-hash (float): 1.0 when the file has been hashed
1090    progress-ciphertext (float): 1.0 when the file has been encrypted.
1091    progress-encode-push (float): 1.0 when the file has been encoded and
1092                                  pushed to the storage servers. For helper
1093                                  uploads, the ciphertext value climbs to 1.0
1094                                  first, then encoding starts. For unassisted
1095                                  uploads, ciphertext and encode-push progress
1096                                  will climb at the same pace.
1097
1098  The "download" op-dict will contain the following keys:
1099
1100    type (string): "download"
1101    storage-index-string (string): a base32-encoded storage index
1102    total-size (int): total size of the file
1103    status (string): current status of the operation
1104    progress (float): 1.0 when the file has been fully downloaded
1105
1106  Front-ends which want to report progress information are advised to simply
1107  average together all the progress-* indicators. A slightly more accurate
1108  value can be found by ignoring the progress-hash value (since the current
1109  implementation hashes synchronously, so clients will probably never see
1110  progress-hash!=1.0).
1111
1112 GET /provisioning/
1113
1114  This page provides a basic tool to predict the likely storage and bandwidth
1115  requirements of a large Tahoe grid. It provides forms to input things like
1116  total number of users, number of files per user, average file size, number
1117  of servers, expansion ratio, hard drive failure rate, etc. It then provides
1118  numbers like how many disks per server will be needed, how many read
1119  operations per second should be expected, and the likely MTBF for files in
1120  the grid. This information is very preliminary, and the model upon which it
1121  is based still needs a lot of work.
1122
1123 GET /helper_status/
1124
1125  If the node is running a helper (i.e. if [helper]enabled is set to True in
1126  tahoe.cfg), then this page will provide a list of all the helper operations
1127  currently in progress. If "?t=json" is added to the URL, it will return a
1128  JSON-formatted list of helper statistics, which can then be used to produce
1129  graphs to indicate how busy the helper is.
1130
1131 GET /statistics/
1132
1133  This page provides "node statistics", which are collected from a variety of
1134  sources.
1135
1136    load_monitor: every second, the node schedules a timer for one second in
1137                  the future, then measures how late the subsequent callback
1138                  is. The "load_average" is this tardiness, measured in
1139                  seconds, averaged over the last minute. It is an indication
1140                  of a busy node, one which is doing more work than can be
1141                  completed in a timely fashion. The "max_load" value is the
1142                  highest value that has been seen in the last 60 seconds.
1143
1144    cpu_monitor: every minute, the node uses time.clock() to measure how much
1145                 CPU time it has used, and it uses this value to produce
1146                 1min/5min/15min moving averages. These values range from 0%
1147                 (0.0) to 100% (1.0), and indicate what fraction of the CPU
1148                 has been used by the Tahoe node. Not all operating systems
1149                 provide meaningful data to time.clock(): they may report 100%
1150                 CPU usage at all times.
1151
1152    uploader: this counts how many immutable files (and bytes) have been
1153              uploaded since the node was started
1154
1155    downloader: this counts how many immutable files have been downloaded
1156                since the node was started
1157
1158    publishes: this counts how many mutable files (including directories) have
1159               been modified since the node was started
1160
1161    retrieves: this counts how many mutable files (including directories) have
1162               been read since the node was started
1163
1164  There are other statistics that are tracked by the node. The "raw stats"
1165  section shows a formatted dump of all of them.
1166
1167  By adding "?t=json" to the URL, the node will return a JSON-formatted
1168  dictionary of stats values, which can be used by other tools to produce
1169  graphs of node behavior. The misc/munin/ directory in the source
1170  distribution provides some tools to produce these graphs.
1171
1172 GET /   (introducer status)
1173
1174  For Introducer nodes, the welcome page displays information about both
1175  clients and servers which are connected to the introducer. Servers make
1176  "service announcements", and these are listed in a table. Clients will
1177  subscribe to hear about service announcements, and these subscriptions are
1178  listed in a separate table. Both tables contain information about what
1179  version of Tahoe is being run by the remote node, their advertised and
1180  outbound IP addresses, their nodeid and nickname, and how long they have
1181  been available.
1182
1183  By adding "?t=json" to the URL, the node will return a JSON-formatted
1184  dictionary of stats values, which can be used to produce graphs of connected
1185  clients over time. This dictionary has the following keys:
1186
1187   ["subscription_summary"] : a dictionary mapping service name (like
1188                              "storage") to an integer with the number of
1189                              clients that have subscribed to hear about that
1190                              service
1191   ["announcement_summary"] : a dictionary mapping service name to an integer
1192                              with the number of servers which are announcing
1193                              that service
1194   ["announcement_distinct_hosts"] : a dictionary mapping service name to an
1195                                     integer which represents the number of
1196                                     distinct hosts that are providing that
1197                                     service. If two servers have announced
1198                                     FURLs which use the same hostnames (but
1199                                     different ports and tubids), they are
1200                                     considered to be on the same host.
1201
1202
1203 == Static Files in /public_html ==
1204
1205 The wapi server will take any request for a URL that starts with /static
1206 and serve it from a configurable directory which defaults to
1207 $BASEDIR/public_html . This is configured by setting the "[node]web.static"
1208 value in $BASEDIR/tahoe.cfg . If this is left at the default value of
1209 "public_html", then http://localhost:3456/static/subdir/foo.html will be
1210 served with the contents of the file $BASEDIR/public_html/subdir/foo.html .
1211
1212 This can be useful to serve a javascript application which provides a
1213 prettier front-end to the rest of the Tahoe wapi.
1214
1215
1216 == safety and security issues -- names vs. URIs ==
1217
1218 Summary: use explicit file- and dir- caps whenever possible, to reduce the
1219 potential for surprises when the virtual drive is changed while you aren't
1220 looking.
1221
1222 The vdrive provides a mutable filesystem, but the ways that the filesystem
1223 can change are limited. The only thing that can change is that the mapping
1224 from child names to child objects that each directory contains can be changed
1225 by adding a new child name pointing to an object, removing an existing child
1226 name, or changing an existing child name to point to a different object.
1227
1228 Obviously if you query tahoe for information about the filesystem and then
1229 act upon the filesystem (such as by getting a listing of the contents of a
1230 directory and then adding a file to the directory), then the filesystem might
1231 have been changed after you queried it and before you acted upon it.
1232 However, if you use the URI instead of the pathname of an object when you act
1233 upon the object, then the only change that can happen is when the object is a
1234 directory then the set of child names it has might be different. If, on the
1235 other hand, you act upon the object using its pathname, then a different
1236 object might be in that place, which can result in more kinds of surprises.
1237
1238 For example, suppose you are writing code which recursively downloads the
1239 contents of a directory. The first thing your code does is fetch the listing
1240 of the contents of the directory. For each child that it fetched, if that
1241 child is a file then it downloads the file, and if that child is a directory
1242 then it recurses into that directory. Now, if the download and the recurse
1243 actions are performed using the child's name, then the results might be
1244 wrong, because for example a child name that pointed to a sub-directory when
1245 you listed the directory might have been changed to point to a file (in which
1246 case your attempt to recurse into it would result in an error and the file
1247 would be skipped), or a child name that pointed to a file when you listed the
1248 directory might now point to a sub-directory (in which case your attempt to
1249 download the child would result in a file containing HTML text describing the
1250 sub-directory!).
1251
1252 If your recursive algorithm uses the uri of the child instead of the name of
1253 the child, then those kinds of mistakes just can't happen. Note that both the
1254 child's name and the child's URI are included in the results of listing the
1255 parent directory, so it isn't any harder to use the URI for this purpose.
1256
1257 In general, use names if you want "whatever object (whether file or
1258 directory) is found by following this name (or sequence of names) when my
1259 request reaches the server". Use URIs if you want "this particular object".
1260
1261 == Concurrency Issues ==
1262
1263 Tahoe uses both mutable and immutable files. Mutable files can be created
1264 explicitly by doing an upload with ?mutable=true added, or implicitly by
1265 creating a new directory (since a directory is just a special way to
1266 interpret a given mutable file).
1267
1268 Mutable files suffer from the same consistency-vs-availability tradeoff that
1269 all distributed data storage systems face. It is not possible to
1270 simultaneously achieve perfect consistency and perfect availability in the
1271 face of network partitions (servers being unreachable or faulty).
1272
1273 Tahoe tries to achieve a reasonable compromise, but there is a basic rule in
1274 place, known as the Prime Coordination Directive: "Don't Do That". What this
1275 means is that if write-access to a mutable file is available to several
1276 parties, then those parties are responsible for coordinating their activities
1277 to avoid multiple simultaneous updates. This could be achieved by having
1278 these parties talk to each other and using some sort of locking mechanism, or
1279 by serializing all changes through a single writer.
1280
1281 The consequences of performing uncoordinated writes can vary. Some of the
1282 writers may lose their changes, as somebody else wins the race condition. In
1283 many cases the file will be left in an "unhealthy" state, meaning that there
1284 are not as many redundant shares as we would like (reducing the reliability
1285 of the file against server failures). In the worst case, the file can be left
1286 in such an unhealthy state that no version is recoverable, even the old ones.
1287 It is this small possibility of data loss that prompts us to issue the Prime
1288 Coordination Directive.
1289
1290 Tahoe nodes implement internal serialization to make sure that a single Tahoe
1291 node cannot conflict with itself. For example, it is safe to issue two
1292 directory modification requests to a single tahoe node's wapi server at the
1293 same time, because the Tahoe node will internally delay one of them until
1294 after the other has finished being applied. (This feature was introduced in
1295 Tahoe-1.1; back with Tahoe-1.0 the web client was responsible for serializing
1296 web requests themselves).
1297
1298 For more details, please see the "Consistency vs Availability" and "The Prime
1299 Coordination Directive" sections of mutable.txt, in the same directory as
1300 this file.
1301
1302
1303 [1]: URLs and HTTP and UTF-8, Oh My
1304
1305  HTTP does not provide a mechanism to specify the character set used to
1306  encode non-ascii names in URLs (rfc2396#2.1). We prefer the convention that
1307  the filename= argument shall be a URL-encoded UTF-8 encoded unicode object.
1308  For example, suppose we want to provoke the server into using a filename of
1309  "f i a n c e-acute e" (i.e. F I A N C U+00E9 E). The UTF-8 encoding of this
1310  is 0x66 0x69 0x61 0x6e 0x63 0xc3 0xa9 0x65 (or "fianc\xC3\xA9e", as python's
1311  repr() function would show). To encode this into a URL, the non-printable
1312  characters must be escaped with the urlencode '%XX' mechansim, giving us
1313  "fianc%C3%A9e". Thus, the first line of the HTTP request will be "GET
1314  /uri/CAP...?save=true&filename=fianc%C3%A9e HTTP/1.1". Not all browsers
1315  provide this: IE7 uses the Latin-1 encoding, which is fianc%E9e.
1316
1317  The response header will need to indicate a non-ASCII filename. The actual
1318  mechanism to do this is not clear. For ASCII filenames, the response header
1319  would look like:
1320
1321   Content-Disposition: attachment; filename="english.txt"
1322
1323  If Tahoe were to enforce the utf-8 convention, it would need to decode the
1324  URL argument into a unicode string, and then encode it back into a sequence
1325  of bytes when creating the response header. One possibility would be to use
1326  unencoded utf-8. Developers suggest that IE7 might accept this:
1327
1328   #1: Content-Disposition: attachment; filename="fianc\xC3\xA9e"
1329     (note, the last four bytes of that line, not including the newline, are
1330     0xC3 0xA9 0x65 0x22)
1331
1332  RFC2231#4 (dated 1997): suggests that the following might work, and some
1333  developers (http://markmail.org/message/dsjyokgl7hv64ig3) have reported that
1334  it is supported by firefox (but not IE7):
1335
1336   #2: Content-Disposition: attachment; filename*=utf-8''fianc%C3%A9e
1337
1338  My reading of RFC2616#19.5.1 (which defines Content-Disposition) says that
1339  the filename= parameter is defined to be wrapped in quotes (presumeably to
1340  allow spaces without breaking the parsing of subsequent parameters), which
1341  would give us:
1342
1343   #3: Content-Disposition: attachment; filename*=utf-8''"fianc%C3%A9e"
1344
1345  However this is contrary to the examples in the email thread listed above.
1346
1347  Developers report that IE7 (when it is configured for UTF-8 URL encoding,
1348  which is not the default in asian countries), will accept:
1349
1350   #4: Content-Disposition: attachment; filename=fianc%C3%A9e
1351
1352  However, for maximum compatibility, Tahoe simply copies bytes from the URL
1353  into the response header, rather than enforcing the utf-8 convention. This
1354  means it does not try to decode the filename from the URL argument, nor does
1355  it encode the filename into the response header.