HKDF (does not work yet)
[oweals/gnunet.git] / src / include / gnunet_fs_service.h
index 138a8f0f77a3c090f4a8d90c0dffec0f9e31cb00..9495731ea0ea0eea55f2960864e06cbdbcbf68ba 100644 (file)
      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
      Boston, MA 02111-1307, USA.
 */
-- review:
-* directory creation/inspection API
-* unindex start/stop API
-* resume notifications 
-* ProgressCallback: struct/union instead of tons of args?
-* download options (no temporary files -- what about no files at all?)
-
 /**
  * @file include/gnunet_fs_service.h
- * @brief support for file-sharing via GNUnet 
+ * @brief API for file-sharing via GNUnet 
  * @author Christian Grothoff
  */
-
 #ifndef GNUNET_FS_LIB_H
 #define GNUNET_FS_LIB_H
 
@@ -63,17 +55,21 @@ extern "C"
  */
 #define GNUNET_FS_VERSION 0x00090000
 
-#define GNUNET_DIRECTORY_MIME  "application/gnunet-directory"
-#define GNUNET_DIRECTORY_MAGIC "\211GND\r\n\032\n"
-#define GNUNET_DIRECTORY_EXT   ".gnd"
 
-/* URI API */ 
+/* ******************** URI API *********************** */
+
+#define GNUNET_FS_URI_PREFIX "gnunet://fs/"
+#define GNUNET_FS_URI_KSK_INFIX "ksk/"
+#define GNUNET_FS_URI_SKS_INFIX "sks/"
+#define GNUNET_FS_URI_CHK_INFIX "chk/"
+#define GNUNET_FS_URI_LOC_INFIX "loc/"
+
+
+/**
+ * A Universal Resource Identifier (URI), opaque.
+ */
+struct GNUNET_FS_Uri;
 
-#define GNUNET_FS_URI_PREFIX      "gnunet://fs/"
-#define GNUNET_FS_SEARCH_INFIX    "ksk/"
-#define GNUNET_FS_SUBSPACE_INFIX  "sks/"
-#define GNUNET_FS_FILE_INFIX      "chk/"
-#define GNUNET_FS_LOCATION_INFIX  "loc/"
 
 /**
  * Iterator over keywords
@@ -87,24 +83,6 @@ typedef int (*GNUNET_FS_KeywordIterator) (void *cls,
                                          const char *keyword,
                                          int is_mandatory);
 
-
-/**
- * Does the meta-data claim that this is a directory?
- * Checks if the mime-type is that of a GNUnet directory.
- *
- * @return GNUNET_YES if it is, GNUNET_NO if it is not, GNUNET_SYSERR if
- *  we have no mime-type information (treat as 'GNUNET_NO')
- */
-int 
-GNUNET_FS_meta_data_test_for_directory (const struct GNUNET_CONTAINER_MetaData *md);
-
-
-/**
- * A URI (in internal representation).
- */
-struct GNUNET_FS_Uri;
-
-
 /**
  * Get a unique key from a URI.  This is for putting URIs
  * into HashMaps.  The key may change between FS implementations.
@@ -133,7 +111,8 @@ GNUNET_FS_uri_to_string (const struct GNUNET_FS_Uri *uri);
  * @return string with the keywords
  */
 char *
-GNUNET_FS_ksk_uri_ksk_to_string_fancy (const struct GNUNET_FS_Uri *uri);
+GNUNET_FS_uri_ksk_to_string_fancy (const struct GNUNET_FS_Uri *uri);
+
 
 /**
  * Convert a UTF-8 String to a URI.
@@ -202,10 +181,20 @@ struct GNUNET_FS_Uri *
 GNUNET_FS_uri_loc_get_uri (const struct GNUNET_FS_Uri *uri);
 
 
+/**
+ * Obtain the expiration of the LOC URI.
+ *
+ * @param uri location URI to get the expiration from
+ * @return expiration time of the URI
+ */
+struct GNUNET_TIME_Absolute
+GNUNET_FS_uri_loc_get_expiration (const struct GNUNET_FS_Uri *uri);
+
+
 /**
  * Construct a location URI (this peer will be used for the location).
  *
- * @param baseURI content offered by the sender
+ * @param baseUri content offered by the sender
  * @param cfg configuration information (used to find our hostkey)
  * @param expiration_time how long will the content be offered?
  * @return the location URI, NULL on error
@@ -216,6 +205,32 @@ GNUNET_FS_uri_loc_create (const struct GNUNET_FS_Uri *baseUri,
                          struct GNUNET_TIME_Absolute expiration_time);
 
 
+/**
+ * Canonicalize keyword URI.  Performs operations such
+ * as decapitalization and removal of certain characters.
+ * (useful for search).
+ *
+ * @param uri the URI to canonicalize 
+ * @return canonicalized version of the URI, NULL on error
+ */
+struct GNUNET_FS_Uri *
+GNUNET_FS_uri_ksk_canonicalize (const struct GNUNET_FS_Uri *uri);
+
+
+/**
+ * Merge the sets of keywords from two KSK URIs.
+ * (useful for merging the canonicalized keywords with
+ * the original keywords for sharing).
+ *
+ * @param u1 first uri
+ * @param u2 second uri
+ * @return merged URI, NULL on error
+ */
+struct GNUNET_FS_Uri *
+GNUNET_FS_uri_ksk_merge (const struct GNUNET_FS_Uri *u1,
+                        const struct GNUNET_FS_Uri *u2);
+
+
 /**
  * Duplicate URI.
  *
@@ -239,11 +254,13 @@ GNUNET_FS_uri_dup (const struct GNUNET_FS_Uri *uri);
  * "OR"ed keywords 'foo' and 'bar', not into '"foo bar"'.
  *
  * @param keywords the keyword string
+ * @param emsg where to store an error message
  * @return an FS URI for the given keywords, NULL
  *  if keywords is not legal (i.e. empty).
  */
 struct GNUNET_FS_Uri *
-GNUNET_FS_uri_ksk_create (const char *keywords);
+GNUNET_FS_uri_ksk_create (const char *keywords,
+                         char **emsg);
 
 
 /**
@@ -290,6 +307,26 @@ int
 GNUNET_FS_uri_test_sks (const struct GNUNET_FS_Uri *uri);
 
 
+/**
+ * Handle to one of our namespaces.
+ */
+struct GNUNET_FS_Namespace;
+
+
+/**
+ * Create an SKS URI from a namespace and an identifier.
+ *
+ * @param ns namespace
+ * @param id identifier
+ * @param emsg where to store an error message
+ * @return an FS URI for the given namespace and identifier
+ */
+struct GNUNET_FS_Uri *
+GNUNET_FS_uri_sks_create (struct GNUNET_FS_Namespace *ns,
+                         const char *id,
+                         char **emsg);
+
+
 /**
  * Get the ID of a namespace from the given
  * namespace URI.
@@ -350,7 +387,7 @@ GNUNET_FS_uri_test_chk (const struct GNUNET_FS_Uri *uri);
  * What is the size of the file that this URI
  * refers to?
  *
- * @param uri the CHK URI to inspect
+ * @param uri the CHK (or LOC) URI to inspect
  * @return size of the file as specified in the CHK URI
  */
 uint64_t 
@@ -371,11 +408,15 @@ GNUNET_FS_uri_test_loc (const struct GNUNET_FS_Uri *uri);
  * Construct a keyword-URI from meta-data (take all entries
  * in the meta-data and construct one large keyword URI
  * that lists all keywords that can be found in the meta-data).
- * @deprecated
+ *
+ * @param md metadata to use
+ * @return NULL on error, otherwise a KSK URI
  */
 struct GNUNET_FS_Uri *
-GNUNET_FS_uri_ksk_create_from_meta_data (const struct GNUNET_MetaData *md);
+GNUNET_FS_uri_ksk_create_from_meta_data (const struct GNUNET_CONTAINER_MetaData *md);
+
 
+/* ******************** command-line option parsing API *********************** */
 
 /**
  * Command-line option parser function that allows the user
@@ -390,7 +431,7 @@ GNUNET_FS_uri_ksk_create_from_meta_data (const struct GNUNET_MetaData *md);
  * @return GNUNET_OK on success
  */
 int
-GNUNET_FS_getopt_configure_set_keywords (GNUNET_GETOPT_CommandLineProcessorContext* ctx, 
+GNUNET_FS_getopt_set_keywords (struct GNUNET_GETOPT_CommandLineProcessorContext* ctx, 
                                         void *scls,
                                         const char *option,
                                         const char *value);
@@ -403,16 +444,16 @@ GNUNET_FS_getopt_configure_set_keywords (GNUNET_GETOPT_CommandLineProcessorConte
  * the metadata must be passed as the "scls" argument.
  *
  * @param ctx command line processor context
- * @param scls must be of type "struct GNUNET_MetaData **"
+ * @param scls must be of type "struct GNUNET_CONTAINER_MetaData **"
  * @param option name of the option (typically 'k')
  * @param value command line argument given
  * @return GNUNET_OK on success
  */
 int
-GNUNET_FS_getopt_configure_set_metadata (GNUNET_GETOPT_CommandLineProcessorContext* ctx, 
-                                        void *scls,
-                                        const char *option,
-                                        const char *value);
+GNUNET_FS_getopt_set_metadata (struct GNUNET_GETOPT_CommandLineProcessorContext* ctx, 
+                              void *scls,
+                              const char *option,
+                              const char *value);
 
 
 
@@ -432,24 +473,994 @@ GNUNET_FS_getopt_configure_set_metadata (GNUNET_GETOPT_CommandLineProcessorConte
  */
 enum GNUNET_FS_Status
 {
-  GNUNET_FS_STATUS_UPLOAD_START,
-  GNUNET_FS_STATUS_UPLOAD_PROGRESS,
-  GNUENT_FS_STATUS_UPLOAD_ERROR,
-  GNUNET_FS_STATUS_UPLOAD_COMPLETED,
-  GNUNET_FS_STATUS_UPLOAD_STOPPED,
+  /**
+   * Notification that we have started to publish a file structure.
+   */
+  GNUNET_FS_STATUS_PUBLISH_START,
+
+  /**
+   * Notification that we have resumed sharing a file structure.
+   */
+  GNUNET_FS_STATUS_PUBLISH_RESUME,
+
+  /**
+   * Notification that we have suspended sharing a file structure.
+   */
+  GNUNET_FS_STATUS_PUBLISH_SUSPEND,
+
+  /**
+   * Notification that we are making progress sharing a file structure.
+   */
+  GNUNET_FS_STATUS_PUBLISH_PROGRESS,
+
+  /**
+   * Notification that an error was encountered  sharing a file structure.
+   * The application will continue to receive resume/suspend events for
+   * this structure until "GNUNET_FS_publish_stop" is called.
+   */
+  GNUNET_FS_STATUS_PUBLISH_ERROR,
+
+  /**
+   * Notification that we completed sharing a file structure.
+   * The application will continue to receive resume/suspend events for
+   * this structure until "GNUNET_FS_publish_stop" is called.
+   */
+  GNUNET_FS_STATUS_PUBLISH_COMPLETED,
+
+  /**
+   * Notification that we have stopped
+   * the process of uploading a file structure; no
+   * futher events will be generated for this action.
+   */
+  GNUNET_FS_STATUS_PUBLISH_STOPPED,
+
+  /**
+   * Notification that we have started this download.
+   */
   GNUNET_FS_STATUS_DOWNLOAD_START,
+
+  /**
+   * Notification that this download is being resumed.
+   */
+  GNUNET_FS_STATUS_DOWNLOAD_RESUME,
+
+  /**
+   * Notification that this download was suspended.
+   */
+  GNUNET_FS_STATUS_DOWNLOAD_SUSPEND,
+
+  /**
+   * Notification about progress with this download.
+   */
   GNUNET_FS_STATUS_DOWNLOAD_PROGRESS,
+
+  /**
+   * Notification that this download encountered an error.
+   */
   GNUNET_FS_STATUS_DOWNLOAD_ERROR,
+
+  /**
+   * Notification that this download completed.  Note that for
+   * directories, completion does not imply completion of all files in
+   * the directory.
+   */
   GNUNET_FS_STATUS_DOWNLOAD_COMPLETED,
+
+  /**
+   * Notification that this download was stopped
+   * (final event with respect to this action).
+   */
   GNUNET_FS_STATUS_DOWNLOAD_STOPPED,
+
+  /**
+   * Notification that this download is now actively being
+   * pursued (as opposed to waiting in the queue).
+   */
+  GNUNET_FS_STATUS_DOWNLOAD_ACTIVE,
+
+  /**
+   * Notification that this download is no longer actively
+   * being pursued (back in the queue).
+   */
+  GNUNET_FS_STATUS_DOWNLOAD_INACTIVE,
+
+  /**
+   * Notification that this download is no longer part of a
+   * recursive download or search but now a 'stand-alone'
+   * download (and may thus need to be moved in the GUI
+   * into a different category).
+   */
+  GNUNET_FS_STATUS_DOWNLOAD_LOST_PARENT,
+
+  /**
+   * First event generated when a client requests 
+   * a search to begin or when a namespace result
+   * automatically triggers the search for updates.
+   */
   GNUNET_FS_STATUS_SEARCH_START,
-  GNUNET_FS_STATUS_SEARCH_PROGRESS,
+
+  /**
+   * Last event when a search is being resumed;
+   * note that "GNUNET_FS_SEARCH_START" will not
+   * be generated in this case.
+   */
+  GNUNET_FS_STATUS_SEARCH_RESUME,
+
+  /**
+   * Event generated for each search result
+   * when the respective search is resumed.
+   */
+  GNUNET_FS_STATUS_SEARCH_RESUME_RESULT,
+
+  /**
+   * Last event when a search is being suspended;
+   * note that "GNUNET_FS_SEARCH_STOPPED" will not
+   * be generated in this case.
+   */
+  GNUNET_FS_STATUS_SEARCH_SUSPEND,
+  
+  /**
+   * This search has yielded a result.
+   */
+  GNUNET_FS_STATUS_SEARCH_RESULT,
+
+  /**
+   * We have discovered a new namespace.
+   */
+  GNUNET_FS_STATUS_SEARCH_RESULT_NAMESPACE,
+
+  /**
+   * We have additional data about the quality
+   * or availability of a search result.
+   */
+  GNUNET_FS_STATUS_SEARCH_UPDATE,
+
+  /**
+   * Signals a problem with this search.
+   */
   GNUNET_FS_STATUS_SEARCH_ERROR,
+
+  /**
+   * Signals that this search was paused.
+   */
+  GNUNET_FS_STATUS_SEARCH_PAUSED,
+
+  /**
+   * Signals that this search was continued (unpaused).
+   */
+  GNUNET_FS_STATUS_SEARCH_CONTINUED,
+
+  /**
+   * Event generated for each search result
+   * when the respective search is stopped.
+   */
+  GNUNET_FS_STATUS_SEARCH_RESULT_STOPPED,
+
+  /**
+   * Event generated for each search result
+   * when the respective search is suspended.
+   */
+  GNUNET_FS_STATUS_SEARCH_RESULT_SUSPEND,
+
+  /**
+   * Last message from a search; this signals
+   * that there will be no further events associated
+   * with this search.
+   */
   GNUNET_FS_STATUS_SEARCH_STOPPED,
+
+  /**
+   * Notification that we started to unindex a file.
+   */ 
   GNUNET_FS_STATUS_UNINDEX_START,
+
+  /**
+   * Notification that we resumed unindexing of a file.
+   */
+  GNUNET_FS_STATUS_UNINDEX_RESUME,
+
+  /**
+   * Notification that we suspended unindexing a file.
+   */
+  GNUNET_FS_STATUS_UNINDEX_SUSPEND,
+
+  /**
+   * Notification that we made progress unindexing a file.
+   */
   GNUNET_FS_STATUS_UNINDEX_PROGRESS,
+
+  /**
+   * Notification that we encountered an error unindexing
+   * a file.
+   */
   GNUNET_FS_STATUS_UNINDEX_ERROR,
+
+  /**
+   * Notification that the unindexing of this file
+   * was completed.
+   */
+  GNUNET_FS_STATUS_UNINDEX_COMPLETED,
+
+  /**
+   * Notification that the unindexing of this file
+   * was stopped (final event for this action).
+   */
   GNUNET_FS_STATUS_UNINDEX_STOPPED
+
+};
+
+
+/**
+ * Handle for controlling an upload.
+ */
+struct GNUNET_FS_PublishContext;
+
+
+/**
+ * Handle for controlling an unindexing operation.
+ */
+struct GNUNET_FS_UnindexContext;
+
+
+/**
+ * Handle for controlling a search.
+ */
+struct GNUNET_FS_SearchContext;
+
+
+/**
+ * Result from a search.  Opaque handle to refer to the search
+ * (typically used when starting a download associated with the search
+ * result).
+ */
+struct GNUNET_FS_SearchResult;
+
+
+/**
+ * Context for controlling a download.
+ */
+struct GNUNET_FS_DownloadContext;
+
+
+/**
+ * Handle for detail information about a file that is being publishd.
+ * Specifies metadata, keywords, how to get the contents of the file
+ * (i.e. data-buffer in memory, filename on disk) and other options.
+ */
+struct GNUNET_FS_FileInformation;
+
+
+/**
+ * Argument given to the progress callback with
+ * information about what is going on.
+ */
+struct GNUNET_FS_ProgressInfo
+{  
+
+  /**
+   * Values that depend on the event type.
+   */
+  union {
+    
+    /**
+     * Values for all "GNUNET_FS_STATUS_PUBLISH_*" events.
+     */
+    struct {
+
+      /**
+       * Context for controlling the upload.
+       */
+      struct GNUNET_FS_PublishContext *pc;
+
+      /**
+       * Information about the file that is being publishd.
+       */
+      const struct GNUNET_FS_FileInformation *fi;
+
+      /**
+       * Client context pointer (set the last time by the client for
+       * this operation; initially NULL on START/RESUME events).
+       */
+      void *cctx;
+
+      /**
+       * Client context pointer for the parent operation
+       * (if this is a file in a directory or a subdirectory).
+       */
+      void *pctx;
+
+      /**
+       * Name of the file being published; can be NULL.
+       */
+      const char *filename;
+      
+      /**
+       * How large is the file overall?  For directories,
+       * this is only the size of the directory itself,
+       * not of the other files contained within the 
+       * directory.
+       */
+      uint64_t size;
+
+      /**
+       * At what time do we expect to finish the upload?
+       * (will be a value in the past for completed
+       * uploads).
+       */ 
+      struct GNUNET_TIME_Relative eta;
+
+      /**
+       * How long has this upload been actively running
+       * (excludes times where the upload was suspended).
+       */
+      struct GNUNET_TIME_Relative duration;
+
+      /**
+       * How many bytes have we completed?
+       */
+      uint64_t completed;
+
+      /**
+       * What anonymity level is used for this upload?
+       */
+      uint32_t anonymity;
+
+      /**
+       * Additional values for specific events.
+       */
+      union {
+
+       /**
+        * These values are only valid for
+        * GNUNET_FS_STATUS_PUBLISH_PROGRESS events.
+        */
+       struct {
+         
+         /**
+          * Data block we just published.
+          */
+         const void *data;
+         
+         /**
+          * At what offset in the file is "data"?
+          */
+         uint64_t offset;
+         
+         /**
+          * Length of the data block.
+          */
+         uint64_t data_len;
+
+         /**
+          * Depth of the given block in the tree; 
+          * 0 would be the highest level (the first
+          * call is guaranteed to be for the lowest
+          * level).
+          */
+         unsigned int depth;
+
+       } progress;
+
+       /**
+        * These values are only valid for
+        * GNUNET_FS_STATUS_PUBLISH_RESUME events.
+        */
+       struct {
+         
+         /**
+          * Error message, NULL if no error was encountered so far.
+          */
+         const char *message;
+         
+         /**
+          * URI of the file (if the download had been completed)
+          */
+         const struct GNUNET_FS_Uri *chk_uri;
+
+       } resume;
+
+       /**
+        * These values are only valid for
+        * GNUNET_FS_STATUS_PUBLISH_COMPLETED events.
+        */
+       struct {
+         
+         /**
+          * URI of the file.
+          */
+         const struct GNUNET_FS_Uri *chk_uri;
+
+       } completed;
+
+       /**
+        * These values are only valid for
+        * GNUNET_FS_STATUS_PUBLISH_ERROR events.
+        */
+       struct {
+         
+         /**
+          * Error message, never NULL.
+          */
+         const char *message;
+
+       } error;
+
+      } specifics;
+
+    } publish;
+
+    
+    /**
+     * Values for all "GNUNET_FS_STATUS_DOWNLOAD_*" events.
+     */
+    struct {
+
+      /**
+       * Context for controlling the download.
+       */
+      struct GNUNET_FS_DownloadContext *dc;
+
+      /**
+       * Client context pointer (set the last time
+       * by the client for this operation; initially
+       * NULL on START/RESUME events).
+       */
+      void *cctx;
+
+      /**
+       * Client context pointer for the parent operation
+       * (if this is a file in a directory or a subdirectory).
+       */
+      void *pctx;
+
+      /**
+       * Client context pointer for the associated search operation
+       * (specifically, context pointer for the specific search
+       * result, not the overall search); only set if this 
+       * download was started from a search result.
+       */
+      void *sctx;
+      
+      /**
+       * URI used for this download.
+       */
+      const struct GNUNET_FS_Uri *uri;
+
+      /**
+       * Name of the file that we are downloading.
+       */
+      const char *filename;
+      
+      /**
+       * How large is the download overall?  This
+       * is NOT necessarily the size from the
+       * URI since we may be doing a partial download.
+       */
+      uint64_t size;
+
+      /**
+       * At what time do we expect to finish the download?
+       * (will be a value in the past for completed
+       * uploads).
+       */ 
+      struct GNUNET_TIME_Relative eta;
+
+      /**
+       * How long has this download been active?
+       */ 
+      struct GNUNET_TIME_Relative duration;
+
+      /**
+       * How many bytes have we completed?
+       */
+      uint64_t completed;
+
+      /**
+       * What anonymity level is used for this download?
+       */
+      uint32_t anonymity;
+
+      /**
+       * Is the download currently active.
+       */
+      int is_active;
+
+      /**
+       * Additional values for specific events.
+       */
+      union {
+       
+       /**
+        * These values are only valid for
+        * GNUNET_FS_STATUS_DOWNLOAD_PROGRESS events.
+        */
+       struct {
+  
+         /**
+          * Data block we just obtained.
+          */
+         const void *data;
+         
+         /**
+          * At what offset in the file is "data"?
+          */
+         uint64_t offset;
+         
+         /**
+          * Length of the data block.
+          */
+         uint64_t data_len;
+
+         /**
+          * Depth of the given block in the tree; 
+          * 0 would be the highest level (the first
+          * call is guaranteed to be for the lowest
+          * level).
+          */
+         unsigned int depth;
+
+       } progress;
+
+       /**
+        * These values are only valid for
+        * GNUNET_FS_STATUS_DOWNLOAD_START events.
+        */
+       struct {
+
+         /**
+          * Known metadata for the download.
+          */
+         const struct GNUNET_CONTAINER_MetaData *meta;
+         
+       } start;
+
+       /**
+        * These values are only valid for
+        * GNUNET_FS_STATUS_DOWNLOAD_RESUME events.
+        */
+       struct {
+
+         /**
+          * Known metadata for the download.
+          */
+         const struct GNUNET_CONTAINER_MetaData *meta;
+
+         /**
+          * Error message, NULL if we have not encountered any error yet.
+          */
+         const char *message;
+
+       } resume;
+
+       /**
+        * These values are only valid for
+        * GNUNET_FS_STATUS_DOWNLOAD_ERROR events.
+        */
+       struct {
+
+         /**
+          * Error message.
+          */
+         const char *message;
+
+       } error;
+
+      } specifics;
+
+    } download;
+
+    /**
+     * Values for all "GNUNET_FS_STATUS_SEARCH_*" events.
+     */
+    struct {
+
+      /**
+       * Context for controlling the search, NULL for
+       * searches that were not explicitly triggered
+       * by the client (i.e., searches for updates in
+       * namespaces).
+       */
+      struct GNUNET_FS_SearchContext *sc;
+
+      /**
+       * Client context pointer (set the last time by the client for
+       * this operation; initially NULL on START/RESUME events).  Note
+       * that this value can only be set on START/RESUME; returning
+       * non-NULL on RESULT/RESUME_RESULT will actually update the
+       * private context for "UPDATE" events.
+       */
+      void *cctx;
+
+      /**
+       * Client parent-context pointer; NULL for top-level searches,
+       * refers to the client context of the associated search result
+       * for automatically triggered searches for updates in
+       * namespaces.  In this case, 'presult' refers to that search
+       * result.
+       */
+      void *pctx;
+
+      /**
+       * What query is used for this search
+       * (list of keywords or SKS identifier).
+       */
+      const struct GNUNET_FS_Uri *query;
+
+      /**
+       * How long has this search been actively running
+       * (excludes times where the search was paused or
+       * suspended).
+       */
+      struct GNUNET_TIME_Relative duration;
+
+      /**
+       * What anonymity level is used for this search?
+       */
+      uint32_t anonymity;
+
+      /**
+       * Additional values for specific events.
+       */
+      union {
+       
+       /**
+        * These values are only valid for
+        * GNUNET_FS_STATUS_SEARCH_RESULT events.
+        */
+       struct {
+         
+         /**
+          * Metadata for the search result.
+          */
+         const struct GNUNET_CONTAINER_MetaData *meta;
+
+         /**
+          * URI for the search result.
+          */
+         const struct GNUNET_FS_Uri *uri;
+
+         /**
+          * Handle to the result (for starting downloads).
+          */
+         struct GNUNET_FS_SearchResult *result;
+
+         /**
+          * Applicability rank (the larger, the better the result
+          * fits the search criteria).
+          */
+         uint32_t applicability_rank;    
+
+       } result;
+       
+       /**
+        * These values are only valid for
+        * GNUNET_FS_STATUS_SEARCH_RESUME_RESULT events.
+        */
+       struct {
+         
+         /**
+          * Metadata for the search result.
+          */
+         const struct GNUNET_CONTAINER_MetaData *meta;
+
+         /**
+          * URI for the search result.
+          */
+         const struct GNUNET_FS_Uri *uri;
+
+         /**
+          * Handle to the result (for starting downloads).
+          */
+         struct GNUNET_FS_SearchResult *result;
+
+         /**
+          * Current availability rank (negative:
+          * unavailable, positive: available)
+          */
+         int32_t availability_rank;
+         /**
+          * On how many total queries is the given
+          * availability_rank based?
+          */
+         uint32_t availability_certainty;
+
+         /**
+          * Updated applicability rank (the larger,
+          * the better the result fits the search
+          * criteria).
+          */
+         uint32_t applicability_rank;    
+         
+       } resume_result;
+       
+       /**
+        * These values are only valid for
+        * GNUNET_FS_STATUS_SEARCH_UPDATE events.
+        */
+       struct {
+
+         /**
+          * Private context set for for this result
+          * during the "RESULT" event.
+          */
+         void *cctx;
+         
+         /**
+          * Metadata for the search result.
+          */
+         const struct GNUNET_CONTAINER_MetaData *meta;
+
+         /**
+          * URI for the search result.
+          */
+         const struct GNUNET_FS_Uri *uri;
+
+         /**
+          * Current availability rank (negative:
+          * unavailable, positive: available)
+          */
+         int32_t availability_rank;
+         /**
+          * On how many total queries is the given
+          * availability_rank based?
+          */
+         uint32_t availability_certainty;
+
+         /**
+          * Updated applicability rank (the larger,
+          * the better the result fits the search
+          * criteria).
+          */
+         uint32_t applicability_rank;
+
+       } update;
+       
+       /**
+        * These values are only valid for
+        * GNUNET_FS_STATUS_SEARCH_RESULT_SUSPEND events.
+        * These events are automatically triggered for
+        * each search result before the 
+        * GNUNET_FS_STATUS_SEARCH_SUSPEND event.  This
+        * happens primarily to give the client a chance
+        * to clean up the "cctx" (if needed).
+        */
+       struct {
+
+         /**
+          * Private context set for for this result
+          * during the "RESULT" event.
+          */
+         void *cctx;
+         
+         /**
+          * Metadata for the search result.
+          */
+         const struct GNUNET_CONTAINER_MetaData *meta;
+
+         /**
+          * URI for the search result.
+          */
+         const struct GNUNET_FS_Uri *uri;
+
+       } result_suspend;
+       
+       /**
+        * These values are only valid for
+        * GNUNET_FS_STATUS_SEARCH_RESULT_STOPPED events.
+        * These events are automatically triggered for
+        * each search result before the 
+        * GNUNET_FS_STATUS_SEARCH_STOPPED event.  This
+        * happens primarily to give the client a chance
+        * to clean up the "cctx" (if needed).
+        */
+       struct {
+
+         /**
+          * Private context set for for this result
+          * during the "RESULT" event.
+          */
+         void *cctx;
+         
+         /**
+          * Metadata for the search result.
+          */
+         const struct GNUNET_CONTAINER_MetaData *meta;
+
+         /**
+          * URI for the search result.
+          */
+         const struct GNUNET_FS_Uri *uri;
+
+       } result_stopped;
+
+       /**
+        * These values are only valid for
+        * GNUNET_FS_STATUS_SEARCH_RESUME events.
+        */
+       struct {
+
+         /**
+          * Error message, NULL if we have not encountered any error yet.
+          */
+         const char *message;
+
+         /**
+          * Is this search currently paused?
+          */
+         int is_paused;
+
+       } resume;
+
+       /**
+        * These values are only valid for
+        * GNUNET_FS_STATUS_SEARCH_ERROR events.
+        */
+       struct {
+
+         /**
+          * Error message.
+          */
+         const char *message;
+
+       } error;
+    
+       /**
+        * Values for all "GNUNET_FS_STATUS_SEARCH_RESULT_NAMESPACE" events.
+        */
+       struct {
+         
+         /**
+          * Handle to the namespace (NULL if it is not a local
+          * namespace).
+          */
+         struct GNUNET_FS_Namespace *ns;
+         
+         /**
+          * Short, human-readable name of the namespace.
+          */
+         const char *name;
+         
+         /**
+          * Root identifier for the namespace, can be NULL.
+          */
+         const char *root;
+         
+         /**
+          * Metadata for the namespace.
+          */
+         const struct GNUNET_CONTAINER_MetaData *meta;
+         
+         /**
+          * Hash-identifier for the namespace.
+          */
+         GNUNET_HashCode id;      
+         
+       } namespace;
+
+      } specifics;
+
+    } search;
+
+    /**
+     * Values for all "GNUNET_FS_STATUS_UNINDEX_*" events.
+     */
+    struct {
+
+      /**
+       * Context for controlling the unindexing.
+       */
+      struct GNUNET_FS_UnindexContext *uc;
+
+      /**
+       * Client context pointer (set the last time
+       * by the client for this operation; initially
+       * NULL on START/RESUME events).
+       */
+      void *cctx;
+
+      /**
+       * Name of the file that is being unindexed.
+       */
+      const char *filename;
+
+      /**
+       * How large is the file overall?
+       */
+      uint64_t size;
+
+      /**
+       * At what time do we expect to finish unindexing?
+       * (will be a value in the past for completed
+       * unindexing opeations).
+       */ 
+      struct GNUNET_TIME_Relative eta;
+
+      /**
+       * How long has this upload been actively running
+       * (excludes times where the upload was suspended).
+       */
+      struct GNUNET_TIME_Relative duration;
+
+      /**
+       * How many bytes have we completed?
+       */
+      uint64_t completed;
+
+      /**
+       * Additional values for specific events.
+       */
+      union {
+
+       /**
+        * These values are only valid for
+        * GNUNET_FS_STATUS_UNINDEX_PROGRESS events.
+        */
+       struct {
+  
+         /**
+          * Data block we just unindexed.
+          */
+         const void *data;
+         
+         /**
+          * At what offset in the file is "data"?
+          */
+         uint64_t offset;
+         
+         /**
+          * Length of the data block.
+          */
+         uint64_t data_len;
+
+         /**
+          * Depth of the given block in the tree; 
+          * 0 would be the highest level (the first
+          * call is guaranteed to be for the lowest
+          * level).
+          */
+         unsigned int depth;
+
+       } progress;
+
+       /**
+        * These values are only valid for
+        * GNUNET_FS_STATUS_UNINDEX_RESUME events.
+        */
+       struct {
+
+         /**
+          * Error message, NULL if we have not encountered any error yet.
+          */
+         const char *message;
+
+       } resume;
+
+       /**
+        * These values are only valid for
+        * GNUNET_FS_STATUS_UNINDEX_ERROR events.
+        */
+       struct {
+
+         /**
+          * Error message.
+          */
+         const char *message;
+
+       } error;
+
+      } specifics;
+
+    } unindex;
+
+  } value;
+
+  /**
+   * Specific status code (determines the event type).
+   */  
+  enum GNUNET_FS_Status status;
+
 };
 
 
@@ -460,60 +1471,71 @@ enum GNUNET_FS_Status
  * in their meaning on the context in which the callback is used.
  *
  * @param cls closure
- * @param ctx location where the callback can store a context pointer
- *        to keep track of things for this specific operation
- * @param pctx context pointer set by the callback for the parent operation
- *        (NULL if there is no parent operation); for a search result,
- *        the actual search is the parent and the individual search results
- *        are the children (multiple calls for the same search result can
- *        be used whenever availability/certainty or metadata values change)
- * @param filename name of the file that this update is about, NULL for 
- *        searches
- * @param status specific status code
- * @param availability value between 0 and 100 indicating how likely
- *        we think it is that this search result is actually available
- *        in the network (or, in the case of a download, that the download 
- *        will complete); always 100 for uploads; percentage of blocks
- *        that could be unindexed so far for unindexing operations
- *        (indicates how many blocks in the indexed file changed in 
- *        the meantime)
- * @param certainty how certain are we that the availability value is
- *        actually correct?  certainty is also between 0 and 100.
- * @param fsize number of bytes that will need to be processed (for this file)
- * @param completed number of bytes that have been processed (for this file)
- * @param offset offset of the data of buffer in the file
- * @param eta absolute estimated time for the completion of the operation
- * @param uri pointer to CHK URI for search results and downloads; pointer
- *        to KSK uri for uploads; client can modify KSK uri to change the
- *        set of keywords that will be used
- * @param meta metadata for search results and downloads (NULL for downloads
- *        if no metadata is available); can be modified for uploads to change
- *        metadata that will be used
- * @param bsize number of bytes in the buffer
- * @param buffer pointer to the last bytes processed; will be a plaintext
- *        buffer for files (with content downloaded or uploaded) and 
- *        NULL when searching; points to an error message of bsize bytes
- *        if this callback is used to signal an error
- * @return GNUNET_SYSERR to abort the overall operation; GNUNET_NO to
- *        stop this specific operation (do not share this file or skip
- *        this download; GNUNET_NO has no meaning for search results);
- *        GNUNET_YES to continue processing as usual
- * @deprecated (use 2-arg function getting union argument instead)
- */
-typedef int (*GNUNET_FS_ProgressCallback)
+ * @param info details about the event, specifying the event type
+ *        and various bits about the event
+ * @return client-context (for the next progress call
+ *         for this operation; should be set to NULL for
+ *         SUSPEND and STOPPED events).  The value returned
+ *         will be passed to future callbacks in the respective
+ *         field in the GNUNET_FS_ProgressInfo struct.
+ */
+typedef void* (*GNUNET_FS_ProgressCallback)
   (void *cls,
-   void **ctx,
-   void *pctx,
-   const char *filename,
-   enum GNUNET_FS_Status status,
-   float availability,
-   float certainty,
-   uint64_t fsize,
-   uint64_t completed, 
-   uint64_t offset, struct GNUNET_TIME_Absolute eta,
-   struct GNUNET_FS_Uri **uri,
-   struct GNUNET_CONTAINER_MetaData *meta,
-   size_t bsize, const void *buffer);
+   const struct GNUNET_FS_ProgressInfo *info);
+
+
+/**
+ * General (global) option flags for file-sharing.
+ */
+enum GNUNET_FS_Flags
+  {
+    /**
+     * No special flags set.
+     */
+    GNUNET_FS_FLAGS_NONE = 0,
+
+    /**
+     * Is persistence of operations desired?
+     * (will create SUSPEND/RESUME events).
+     */
+    GNUNET_FS_FLAGS_PERSISTENCE = 1,
+
+    /**
+     * Should we automatically trigger probes for search results
+     * to determine availability?
+     * (will create GNUNET_FS_STATUS_SEARCH_UPDATE events).
+     */
+    GNUNET_FS_FLAGS_DO_PROBES = 2
+
+  };
+
+/**
+ * Options specified in the VARARGs portion of GNUNET_FS_start.
+ */
+enum GNUNET_FS_OPTIONS
+  {
+    
+    /**
+     * Last option in the VARARG list.
+     */
+    GNUNET_FS_OPTIONS_END = 0,
+
+    /**
+     * Select the desired amount of parallelism (this option should be
+     * followed by an "unsigned int" giving the desired maximum number
+     * of parallel downloads).
+     */
+    GNUNET_FS_OPTIONS_DOWNLOAD_PARALLELISM = 1,
+
+    /**
+     * Maximum number of requests that should be pending at a given
+     * point in time (invidivual downloads may go above this, but
+     * if we are above this threshold, we should not activate any
+     * additional downloads.
+     */
+    GNUNET_FS_OPTIONS_REQUEST_PARALLELISM = 2
+
+  };
 
 
 /**
@@ -530,13 +1552,18 @@ struct GNUNET_FS_Handle;
  * @param client_name unique identifier for this client 
  * @param upcb function to call to notify about FS actions
  * @param upcb_cls closure for upcb
+ * @param flags specific attributes for fs-operations
+ * @param ... list of optional options, terminated with GNUNET_FS_OPTIONS_END
+ * @return NULL on error
  */
 struct GNUNET_FS_Handle *
 GNUNET_FS_start (struct GNUNET_SCHEDULER_Handle *sched,
-                struct GNUNET_CONFIGURATION_Handle *cfg,
+                const struct GNUNET_CONFIGURATION_Handle *cfg,
                 const char *client_name,
                 GNUNET_FS_ProgressCallback upcb,
-                void *upcb_cls);
+                void *upcb_cls,
+                enum GNUNET_FS_Flags flags,
+                ...);
 
 
 /**
@@ -551,23 +1578,75 @@ GNUNET_FS_stop (struct GNUNET_FS_Handle *h);
 
 
 /**
- * Handle to one of our namespaces.
+ * Extract meta-data from a file.
+ *
+ * @param md metadata to set
+ * @param filename name of file to inspect
+ * @param extractors plugins to use
+ * @return GNUNET_SYSERR on error, otherwise the number
+ *   of meta-data items obtained
  */
-struct GNUNET_FS_Namespace;
+int 
+GNUNET_FS_meta_data_extract_from_file (struct
+                                      GNUNET_CONTAINER_MetaData
+                                      *md, const char *filename,
+                                      struct EXTRACTOR_PluginList *
+                                      extractors);
 
 
 /**
- * Handle for controlling an upload.
+ * Function called on entries in a GNUNET_FS_FileInformation publish-structure.
+ *
+ * @param cls closure
+ * @param fi the entry in the publish-structure
+ * @param length length of the file or directory
+ * @param meta metadata for the file or directory (can be modified)
+ * @param uri pointer to the keywords that will be used for this entry (can be modified)
+ * @param anonymity pointer to selected anonymity level (can be modified)
+ * @param priority pointer to selected priority (can be modified)
+ * @param do_index should we index (can be modified)
+ * @param expirationTime pointer to selected expiration time (can be modified)
+ * @param client_info pointer to client context set upon creation (can be modified)
+ * @return GNUNET_OK to continue, GNUNET_NO to remove
+ *         this entry from the directory, GNUNET_SYSERR
+ *         to abort the iteration
+ */
+typedef int (*GNUNET_FS_FileInformationProcessor)(void *cls,
+                                                 struct GNUNET_FS_FileInformation *fi,
+                                                 uint64_t length,
+                                                 struct GNUNET_CONTAINER_MetaData *meta,
+                                                 struct GNUNET_FS_Uri **uri,
+                                                 uint32_t *anonymity,
+                                                 uint32_t *priority,
+                                                 int *do_index,
+                                                 struct GNUNET_TIME_Absolute *expirationTime,
+                                                 void **client_info);
+
+
+/**
+ * Obtain the name under which this file information
+ * structure is stored on disk.  Only works for top-level
+ * file information structures.
+ *
+ * @param s structure to get the filename for
+ * @return NULL on error, otherwise filename that
+ *         can be passed to "GNUNET_FS_file_information_recover"
+ *         to read this fi-struct from disk.
  */
-struct GNUNET_FS_ShareContext;
+const char *
+GNUNET_FS_file_information_get_id (struct GNUNET_FS_FileInformation *s);
+
 
 
 /**
- * Share a file or directory.
+ * Create an entry for a file in a publish-structure.
  *
  * @param h handle to the file sharing subsystem
- * @param ctx initial value to use for the '*ctx' in the callback
- * @param filename name of the file or directory to share
+ * @param client_info initial client-info value for this entry
+ * @param filename name of the file or directory to publish
+ * @param keywords under which keywords should this file be available
+ *         directly; can be NULL
+ * @param meta metadata for the file
  * @param do_index GNUNET_YES for index, GNUNET_NO for insertion,
  *                GNUNET_SYSERR for simulation
  * @param anonymity what is the desired anonymity level for sharing?
@@ -575,36 +1654,435 @@ struct GNUNET_FS_ShareContext;
  *   keep this file available?  Use 0 for maximum anonymity and
  *   minimum reliability...
  * @param expirationTime when should this content expire?
- * @param namespace namespace to share the file in, NULL for no namespace
- * @param nid identifier to use for the shared content in the namespace
+ * @return publish structure entry for the file
+ */
+struct GNUNET_FS_FileInformation *
+GNUNET_FS_file_information_create_from_file (struct GNUNET_FS_Handle *h,
+                                            void *client_info,
+                                            const char *filename,
+                                            const struct GNUNET_FS_Uri *keywords,
+                                            const struct GNUNET_CONTAINER_MetaData *meta,
+                                            int do_index,
+                                            uint32_t anonymity,
+                                            uint32_t priority,
+                                            struct GNUNET_TIME_Absolute expirationTime);
+
+
+/**
+ * Create an entry for a file in a publish-structure.
+ *
+ * @param h handle to the file sharing subsystem
+ * @param client_info initial client-info value for this entry
+ * @param length length of the file
+ * @param data data for the file (should not be used afterwards by
+ *        the caller; callee will "free")
+ * @param keywords under which keywords should this file be available
+ *         directly; can be NULL
+ * @param meta metadata for the file
+ * @param do_index GNUNET_YES for index, GNUNET_NO for insertion,
+ *                GNUNET_SYSERR for simulation
+ * @param anonymity what is the desired anonymity level for sharing?
+ * @param priority what is the priority for OUR node to
+ *   keep this file available?  Use 0 for maximum anonymity and
+ *   minimum reliability...
+ * @param expirationTime when should this content expire?
+ * @return publish structure entry for the file
+ */
+struct GNUNET_FS_FileInformation *
+GNUNET_FS_file_information_create_from_data (struct GNUNET_FS_Handle *h,
+                                            void *client_info,
+                                            uint64_t length,
+                                            void *data,
+                                            const struct GNUNET_FS_Uri *keywords,
+                                            const struct GNUNET_CONTAINER_MetaData *meta,
+                                            int do_index,
+                                            uint32_t anonymity,
+                                            uint32_t priority,
+                                            struct GNUNET_TIME_Absolute expirationTime);
+
+
+/**
+ * Function that provides data.
+ *
+ * @param cls closure
+ * @param offset offset to read from; it is possible
+ *            that the caller might need to go backwards
+ *            a bit at times
+ * @param max maximum number of bytes that should be 
+ *            copied to buf; readers are not allowed
+ *            to provide less data unless there is an error;
+ *            a value of "0" will be used at the end to allow
+ *            the reader to clean up its internal state
+ * @param buf where the reader should write the data
+ * @param emsg location for the reader to store an error message
+ * @return number of bytes written, usually "max", 0 on error
+ */
+typedef size_t (*GNUNET_FS_DataReader)(void *cls, 
+                                      uint64_t offset,
+                                      size_t max, 
+                                      void *buf,
+                                      char **emsg);
+
+
+/**
+ * Create an entry for a file in a publish-structure.
+ *
+ * @param h handle to the file sharing subsystem
+ * @param client_info initial client-info value for this entry
+ * @param length length of the file
+ * @param reader function that can be used to obtain the data for the file 
+ * @param reader_cls closure for "reader"
+ * @param keywords under which keywords should this file be available
+ *         directly; can be NULL
+ * @param meta metadata for the file
+ * @param do_index GNUNET_YES for index, GNUNET_NO for insertion,
+ *                GNUNET_SYSERR for simulation
+ * @param anonymity what is the desired anonymity level for sharing?
+ * @param priority what is the priority for OUR node to
+ *   keep this file available?  Use 0 for maximum anonymity and
+ *   minimum reliability...
+ * @param expirationTime when should this content expire?
+ * @return publish structure entry for the file
+ */
+struct GNUNET_FS_FileInformation *
+GNUNET_FS_file_information_create_from_reader (struct GNUNET_FS_Handle *h,
+                                              void *client_info,
+                                              uint64_t length,
+                                              GNUNET_FS_DataReader reader,
+                                              void *reader_cls,
+                                              const struct GNUNET_FS_Uri *keywords,
+                                              const struct GNUNET_CONTAINER_MetaData *meta,
+                                              int do_index,
+                                              uint32_t anonymity,
+                                              uint32_t priority,
+                                              struct GNUNET_TIME_Absolute expirationTime);
+
+
+/**
+ * Function that a "GNUNET_FS_DirectoryScanner" should call
+ * for each entry in the directory.
+ *
+ * @param cls closure
+ * @param filename name of the file (including path); must end 
+ *          in a "/" (even on W32) if this is a directory
+ * @param fi information about the file (should not be
+ *        used henceforth by the caller)
+ */
+typedef void (*GNUNET_FS_FileProcessor)(void *cls,
+                                       const char *filename,
+                                       struct GNUNET_FS_FileInformation *fi);
+
+
+/**
+ * Type of a function that will be used to scan a directory.
+ * 
+ * @param cls closure
+ * @param h handle to the file sharing subsystem
+ * @param dirname name of the directory to scan
+ * @param do_index should files be indexed or inserted
+ * @param anonymity desired anonymity level
+ * @param priority priority for publishing
+ * @param expirationTime expiration for publication
+ * @param proc function to call on each entry
+ * @param proc_cls closure for proc
+ * @param emsg where to store an error message (on errors)
+ * @return GNUNET_OK on success
+ */
+typedef int (*GNUNET_FS_DirectoryScanner)(void *cls,
+                                         struct GNUNET_FS_Handle *h,
+                                         const char *dirname,
+                                         int do_index,
+                                         uint32_t anonymity,
+                                         uint32_t priority,
+                                         struct GNUNET_TIME_Absolute expirationTime,
+                                         GNUNET_FS_FileProcessor proc,
+                                         void *proc_cls,
+                                         char **emsg);
+
+
+
+/**
+ * Simple, useful default implementation of a directory scanner
+ * (GNUNET_FS_DirectoryScanner).  This implementation expects to get a
+ * UNIX filename, will publish all files in the directory except hidden
+ * files (those starting with a ".").  Metadata will be extracted
+ * using GNU libextractor; the specific list of plugins should be
+ * specified in "cls", passing NULL will disable (!)  metadata
+ * extraction.  Keywords will be derived from the metadata and be
+ * subject to default canonicalization.  This is strictly a
+ * convenience function.
+ *
+ * @param cls must be of type "struct EXTRACTOR_Extractor*"
+ * @param h handle to the file sharing subsystem
+ * @param dirname name of the directory to scan
+ * @param do_index should files be indexed or inserted
+ * @param anonymity desired anonymity level
+ * @param priority priority for publishing
+ * @param expirationTime expiration for publication
+ * @param proc function called on each entry
+ * @param proc_cls closure for proc
+ * @param emsg where to store an error message (on errors)
+ * @return GNUNET_OK on success
+ */
+int
+GNUNET_FS_directory_scanner_default (void *cls,
+                                    struct GNUNET_FS_Handle *h,
+                                    const char *dirname,
+                                    int do_index,
+                                    uint32_t anonymity,
+                                    uint32_t priority,
+                                    struct GNUNET_TIME_Absolute expirationTime,
+                                    GNUNET_FS_FileProcessor proc,
+                                    void *proc_cls,
+                                    char **emsg);
+
+
+/**
+ * Create a publish-structure from an existing file hierarchy, inferring
+ * and organizing keywords and metadata as much as possible.  This
+ * function primarily performs the recursive build and re-organizes
+ * keywords and metadata; for automatically getting metadata
+ * extraction, scanning of directories and creation of the respective
+ * GNUNET_FS_FileInformation entries the default scanner should be
+ * passed (GNUNET_FS_directory_scanner_default).  This is strictly a
+ * convenience function.
+ *
+ * @param h handle to the file sharing subsystem
+ * @param client_info initial client-info value for this entry
+ * @param filename name of the top-level file or directory
+ * @param scanner function used to get a list of files in a directory
+ * @param scanner_cls closure for scanner
+ * @param do_index should files in the hierarchy be indexed?
+ * @param anonymity what is the desired anonymity level for sharing?
+ * @param priority what is the priority for OUR node to
+ *   keep this file available?  Use 0 for maximum anonymity and
+ *   minimum reliability...
+ * @param expirationTime when should this content expire?
+ * @param emsg where to store an error message
+ * @return publish structure entry for the directory, NULL on error
+ */
+struct GNUNET_FS_FileInformation *
+GNUNET_FS_file_information_create_from_directory (struct GNUNET_FS_Handle *h,
+                                                 void *client_info,
+                                                 const char *filename,
+                                                 GNUNET_FS_DirectoryScanner scanner,
+                                                 void *scanner_cls,
+                                                 int do_index,
+                                                 uint32_t anonymity,
+                                                 uint32_t priority,
+                                                 struct GNUNET_TIME_Absolute expirationTime,
+                                                 char **emsg);
+
+
+/**
+ * Create an entry for an empty directory in a publish-structure.
+ * This function should be used by applications for which the
+ * use of "GNUNET_FS_file_information_create_from_directory"
+ * is not appropriate.
+ *
+ * @param h handle to the file sharing subsystem
+ * @param client_info initial client-info value for this entry
+ * @param keywords under which keywords should this directory be available
+ *         directly; can be NULL
+ * @param meta metadata for the directory
+ * @param anonymity what is the desired anonymity level for sharing?
+ * @param priority what is the priority for OUR node to
+ *   keep this file available?  Use 0 for maximum anonymity and
+ *   minimum reliability...
+ * @param expirationTime when should this content expire?
+ * @return publish structure entry for the directory , NULL on error
+ */
+struct GNUNET_FS_FileInformation *
+GNUNET_FS_file_information_create_empty_directory (struct GNUNET_FS_Handle *h,
+                                                  void *client_info,
+                                                  const struct GNUNET_FS_Uri *keywords,
+                                                  const struct GNUNET_CONTAINER_MetaData *meta,
+                                                  uint32_t anonymity,
+                                                  uint32_t priority,
+                                                  struct GNUNET_TIME_Absolute expirationTime);
+
+
+/**
+ * Test if a given entry represents a directory.
+ *
+ * @param ent check if this FI represents a directory
+ * @return GNUNET_YES if so, GNUNET_NO if not
+ */
+int
+GNUNET_FS_file_information_is_directory (struct GNUNET_FS_FileInformation *ent);
+
+
+/**
+ * Add an entry to a directory in a publish-structure.  Clients
+ * should never modify publish structures that were passed to
+ * "GNUNET_FS_publish_start" already.
+ *
+ * @param dir the directory
+ * @param ent the entry to add; the entry must not have been
+ *            added to any other directory at this point and 
+ *            must not include "dir" in its structure
+ * @return GNUNET_OK on success, GNUNET_SYSERR on error
+ */
+int
+GNUNET_FS_file_information_add (struct GNUNET_FS_FileInformation *dir,
+                               struct GNUNET_FS_FileInformation *ent);
+
+
+/**
+ * Inspect a file or directory in a publish-structure.  Clients
+ * should never modify publish structures that were passed to
+ * "GNUNET_FS_publish_start" already.  When called on a directory,
+ * this function will FIRST call "proc" with information about
+ * the directory itself and then for each of the files in the
+ * directory (but not for files in subdirectories).  When called
+ * on a file, "proc" will be called exactly once (with information
+ * about the specific file).
+ *
+ * @param dir the directory
+ * @param proc function to call on each entry
+ * @param proc_cls closure for proc
+ */
+void
+GNUNET_FS_file_information_inspect (struct GNUNET_FS_FileInformation *dir,
+                                   GNUNET_FS_FileInformationProcessor proc,
+                                   void *proc_cls);
+
+
+/**
+ * Destroy publish-structure.  Clients should never destroy publish
+ * structures that were passed to "GNUNET_FS_publish_start" already.
+ *
+ * @param fi structure to destroy
+ * @param cleaner function to call on each entry in the structure
+ *        (useful to clean up client_info); can be NULL; return
+ *        values are ignored
+ * @param cleaner_cls closure for cleaner
+ */
+void
+GNUNET_FS_file_information_destroy (struct GNUNET_FS_FileInformation *fi,
+                                   GNUNET_FS_FileInformationProcessor cleaner,
+                                   void *cleaner_cls);
+
+
+/**
+ * Options for publishing.  Compatible options
+ * can be OR'ed together.
+ */
+enum GNUNET_FS_PublishOptions 
+  {
+    /**
+     * No options (use defaults for everything).
+     */
+    GNUNET_FS_PUBLISH_OPTION_NONE = 0,
+    
+    /**
+     * Simulate publishing.  With this option, no data will be stored
+     * in the datastore.  Useful for computing URIs from files.
+     */
+    GNUNET_FS_PUBLISH_OPTION_SIMULATE_ONLY = 1
+  };
+
+/**
+ * Publish a file or directory.
+ *
+ * @param h handle to the file sharing subsystem
+ * @param fi information about the file or directory structure to publish
+ * @param namespace namespace to publish the file in, NULL for no namespace
+ * @param nid identifier to use for the publishd content in the namespace
  *        (can be NULL, must be NULL if namespace is NULL)
  * @param nuid update-identifier that will be used for future updates 
  *        (can be NULL, must be NULL if namespace or nid is NULL)
- * @deprecated API not powerful enough to share complex directory structures
- *         with metadata in general (need to pre-build tree)
- */
-struct GNUNET_FS_ShareContext *
-GNUNET_FS_share_start (struct GNUNET_FS_Handle *h,
-                      void *ctx,
-                      const char *filename,
-                      int do_index,
-                      unsigned int anonymity,
-                      unsigned int priority,
-                      struct GNUNET_TIME_Absolute expirationTime,
-                      struct GNUNET_FS_Namespace *namespace
-                      const char *nid,
-                      const char *nuid);
+ * @param options options for the publication 
+ * @return context that can be used to control the publish operation
+ */
+struct GNUNET_FS_PublishContext *
+GNUNET_FS_publish_start (struct GNUNET_FS_Handle *h,
+                        struct GNUNET_FS_FileInformation *fi,
+                        struct GNUNET_FS_Namespace *namespace,
+                        const char *nid,
+                        const char *nuid,
+                        enum GNUNET_FS_PublishOptions options);
 
 
 /**
- * Stop an upload.  Will abort incomplete uploads (but 
- * not remove blocks that have already been shared) or
- * simply clean up the state for completed uploads.
+ * Stop a publication.  Will abort incomplete publications (but 
+ * not remove blocks that have already been published) or
+ * simply clean up the state for completed publications.
+ * Must NOT be called from within the event callback!
  *
- * @param sc context for the upload to stop
+ * @param pc context for the publication to stop
  */
 void 
-GNUNET_FS_share_stop (struct GNUNET_FS_ShareContext *sc);
+GNUNET_FS_publish_stop (struct GNUNET_FS_PublishContext *pc);
+
+
+/**
+ * Signature of a function called as the continuation of a KBlock or
+ * SBlock publication.
+ *
+ * @param cls closure
+ * @param uri URI under which the block is now available, NULL on error
+ * @param emsg error message, NULL on success
+ */
+typedef void (*GNUNET_FS_PublishContinuation)(void *cls,
+                                             const struct GNUNET_FS_Uri *uri,
+                                             const char *emsg);
+                                     
+
+/**
+ * Publish a KBlock on GNUnet.
+ *
+ * @param h handle to the file sharing subsystem
+ * @param ksk_uri keywords to use
+ * @param meta metadata to use
+ * @param uri URI to refer to in the KBlock
+ * @param expirationTime when the KBlock expires
+ * @param anonymity anonymity level for the KBlock
+ * @param priority priority for the KBlock
+ * @param cont continuation
+ * @param cont_cls closure for cont
+ */
+void
+GNUNET_FS_publish_ksk (struct GNUNET_FS_Handle *h,
+                      const struct GNUNET_FS_Uri *ksk_uri,
+                      const struct GNUNET_CONTAINER_MetaData *meta,
+                      const struct GNUNET_FS_Uri *uri,
+                      struct GNUNET_TIME_Absolute expirationTime,
+                      uint32_t anonymity,
+                      uint32_t priority,
+                      enum GNUNET_FS_PublishOptions options,
+                      GNUNET_FS_PublishContinuation cont,
+                      void *cont_cls);
+
+
+/**
+ * Publish an SBlock on GNUnet.
+ *
+ * @param h handle to the file sharing subsystem
+ * @param namespace namespace to publish in
+ * @param identifier identifier to use
+ * @param update update identifier to use
+ * @param meta metadata to use
+ * @param uri URI to refer to in the SBlock
+ * @param expirationTime when the SBlock expires
+ * @param anonymity anonymity level for the SBlock
+ * @param priority priority for the SBlock
+ * @param cont continuation
+ * @param cont_cls closure for cont
+ */
+void
+GNUNET_FS_publish_sks (struct GNUNET_FS_Handle *h,
+                      struct GNUNET_FS_Namespace *namespace,
+                      const char *identifier,
+                      const char *update,
+                      const struct GNUNET_CONTAINER_MetaData *meta,
+                      const struct GNUNET_FS_Uri *uri,
+                      struct GNUNET_TIME_Absolute expirationTime,
+                      uint32_t anonymity,
+                      uint32_t priority,
+                      enum GNUNET_FS_PublishOptions options,
+                      GNUNET_FS_PublishContinuation cont,
+                      void *cont_cls);
 
 
 /**
@@ -612,10 +2090,12 @@ GNUNET_FS_share_stop (struct GNUNET_FS_ShareContext *sc);
  *
  * @param cls closure
  * @param filename the name of the file
+ * @param file_id hash of the contents of the indexed file
  * @return GNUNET_OK to continue iteration, GNUNET_SYSERR to abort
  */
-typedef int (*GNUNET_FS_FileProcessor) (void *cls,
-                                       const char *filename);
+typedef int (*GNUNET_FS_IndexedFileProcessor) (void *cls,
+                                              const char *filename,
+                                              const GNUNET_HashCode *file_id);
 
 
 /**
@@ -624,11 +2104,17 @@ typedef int (*GNUNET_FS_FileProcessor) (void *cls,
  * @param h handle to the file sharing subsystem
  * @param iterator function to call on each indexed file
  * @param iterator_cls closure for iterator
+ * @param cont continuation to call when done;
+ *             reason should be "TIMEOUT" (on
+ *             error) or  "PREREQ_DONE" (on success)
+ * @param cont_cls closure for cont
  */
 void 
 GNUNET_FS_get_indexed_files (struct GNUNET_FS_Handle *h,
-                            GNUNET_FS_FileProcessor iterator,
-                            void *iterator_cls);
+                            GNUNET_FS_IndexedFileProcessor iterator,
+                            void *iterator_cls,
+                            GNUNET_SCHEDULER_Task cont,
+                            void *cont_cls);
 
 
 /**
@@ -636,37 +2122,49 @@ GNUNET_FS_get_indexed_files (struct GNUNET_FS_Handle *h,
  *
  * @param h handle to the file sharing subsystem
  * @param filename file to unindex
+ * @param cctx initial value for the client context
+ * @return NULL on error, otherwise handle 
+ */
+struct GNUNET_FS_UnindexContext *
+GNUNET_FS_unindex_start (struct GNUNET_FS_Handle *h,
+                        const char *filename,
+                        void *cctx);
+
+
+/**
+ * Clean up after completion of an unindex operation.
+ *
+ * @param uc handle
  */
 void
-GNUNET_FS_unindex (struct GNUNET_FS_Handle *h,
-                  const char *filename);
+GNUNET_FS_unindex_stop (struct GNUNET_FS_UnindexContext *uc);
 
 
 /**
  * Publish an advertismement for a namespace.  
  *
  * @param h handle to the file sharing subsystem
+ * @param ksk_uri keywords to use for advertisment
  * @param namespace handle for the namespace that should be advertised
  * @param meta meta-data for the namespace advertisement
  * @param anonymity for the namespace advertismement
  * @param priority for the namespace advertisement
  * @param expiration for the namespace advertisement
- * @param advertisementURI the keyword (!) URI to advertise the
- *        namespace under (we will create a GNUNET_EC_KNBlock)
- * @param rootEntry name of the root entry in the namespace (for
- *        the namespace advertisement)
- *
- * @return uri of the advertisement
+ * @param rootEntry name of the root of the namespace
+ * @param cont continuation
+ * @param cont_cls closure for cont
  */
-struct GNUNET_FS_Uri *
+void
 GNUNET_FS_namespace_advertise (struct GNUNET_FS_Handle *h,
+                              struct GNUNET_FS_Uri *ksk_uri,
                               struct GNUNET_FS_Namespace *namespace,
-                              const struct GNUNET_MetaData *meta,
-                              unsigned int anonymity,
-                              unsigned int priority,
+                              const struct GNUNET_CONTAINER_MetaData *meta,
+                              uint32_t anonymity,
+                              uint32_t priority,
                               struct GNUNET_TIME_Absolute expiration,
-                              const struct GNUNET_FS_Uri *advertisementURI,
-                              const char *rootEntry);
+                              const char *rootEntry,
+                              GNUNET_FS_PublishContinuation cont,
+                              void *cont_cls);
 
 
 /**
@@ -720,11 +2218,10 @@ typedef void (*GNUNET_FS_NamespaceInfoProcessor) (void *cls,
  * @param h handle to the file sharing subsystem
  * @param cb function to call on each known namespace
  * @param cb_cls closure for cb
- * @return GNUNET_SYSERR on error, otherwise the number of pseudonyms in list
  */
-int 
+void 
 GNUNET_FS_namespace_list (struct GNUNET_FS_Handle *h,
-                         GNUNET_FS_NamespaceProcessor cb,
+                         GNUNET_FS_NamespaceInfoProcessor cb,
                          void *cb_cls);
 
 
@@ -760,9 +2257,22 @@ GNUNET_FS_namespace_list_updateable (struct GNUNET_FS_Namespace *namespace,
 
 
 /**
- * Handle for controlling a search.
+ * Options for searching.  Compatible options
+ * can be OR'ed together.
  */
-struct GNUNET_FS_SearchContext;
+enum GNUNET_FS_SearchOptions 
+  {
+    /**
+     * No options (use defaults for everything).
+     */
+    GNUNET_FS_SEARCH_OPTION_NONE = 0,
+
+    /**
+     * Only search the local host, do not search remote systems (no P2P)
+     */
+    GNUNET_FS_SEARCH_OPTION_LOOPBACK_ONLY = 1
+
+  };
 
 
 /**
@@ -772,12 +2282,16 @@ struct GNUNET_FS_SearchContext;
  * @param uri specifies the search parameters; can be
  *        a KSK URI or an SKS URI.
  * @param anonymity desired level of anonymity
+ * @param options options for the search
+ * @param cctx initial value for the client context
  * @return context that can be used to control the search
  */
 struct GNUNET_FS_SearchContext *
 GNUNET_FS_search_start (struct GNUNET_FS_Handle *h,
                        const struct GNUNET_FS_Uri *uri,
-                       unsigned int anonymity);
+                       uint32_t anonymity,
+                       enum GNUNET_FS_SearchOptions options,
+                       void *cctx);
 
 
 /**
@@ -790,12 +2304,12 @@ GNUNET_FS_search_pause (struct GNUNET_FS_SearchContext *sc);
 
 
 /**
- * Resume paused search.
+ * Continue paused search.
  *
  * @param sc context for the search that should be resumed
  */
 void 
-GNUNET_FS_search_resume (struct GNUNET_FS_SearchContext *sc);
+GNUNET_FS_search_continue (struct GNUNET_FS_SearchContext *sc);
 
 
 /**
@@ -807,10 +2321,47 @@ void
 GNUNET_FS_search_stop (struct GNUNET_FS_SearchContext *sc);
 
 
+
+
 /**
- * Context for controlling a download.
+ * Options for downloading.  Compatible options
+ * can be OR'ed together.
  */
-struct GNUNET_FS_DownloadContext;
+enum GNUNET_FS_DownloadOptions 
+  {
+    /**
+     * No options (use defaults for everything).
+     */
+    GNUNET_FS_DOWNLOAD_OPTION_NONE = 0,
+
+    /**
+     * Only download from the local host, do not access remote systems (no P2P)
+     */
+    GNUNET_FS_DOWNLOAD_OPTION_LOOPBACK_ONLY = 1,
+    
+    /**
+     * Do a recursive download (that is, automatically trigger the
+     * download of files in directories).
+     */
+    GNUNET_FS_DOWNLOAD_OPTION_RECURSIVE = 2,
+
+    /**
+     * Do not append temporary data to
+     * the target file (for the IBlocks).
+     */
+    GNUNET_FS_DOWNLOAD_NO_TEMPORARIES = 4,
+
+    /**
+     * Internal option used to flag this download as a 'probe' for a
+     * search result.  Impacts the priority with which the download is
+     * run and causes signalling callbacks to be done differently.
+     * Also, probe downloads are not serialized on suspension.  Normal
+     * clients should not use this!
+     */
+    GNUNET_FS_DOWNLOAD_IS_PROBE = (1<<31)
+
+  };
+
 
 
 /**
@@ -821,90 +2372,97 @@ struct GNUNET_FS_DownloadContext;
  * given boundaries (if offset and length do not match the 32k FS
  * block boundaries). <p>
  *
- * This function should be used to focus a download towards a
+ * The given range can be used to focus a download towards a
  * particular portion of the file (optimization), not to strictly
  * limit the download to exactly those bytes.
  *
  * @param h handle to the file sharing subsystem
  * @param uri the URI of the file (determines what to download); CHK or LOC URI
+ * @param meta known metadata for the file (can be NULL)
  * @param filename where to store the file, maybe NULL (then no file is
  *        created on disk and data must be grabbed from the callbacks)
+ * @param tempname where to store temporary file data, not used if filename is non-NULL;
+ *        can be NULL (in which case we will pick a name if needed); the temporary file
+ *        may already exist, in which case we will try to use the data that is there and
+ *        if it is not what is desired, will overwrite it
  * @param offset at what offset should we start the download (typically 0)
  * @param length how many bytes should be downloaded starting at offset
  * @param anonymity anonymity level to use for the download
- * @param no_temporaries set to GNUNET_YES to disallow generation of temporary files
- * @param recursive should this be a recursive download (useful for directories
- *        to automatically trigger download of files in the directories)
+ * @param options various download options
+ * @param cctx initial value for the client context for this download
  * @param parent parent download to associate this download with (use NULL
  *        for top-level downloads; useful for manually-triggered recursive downloads)
  * @return context that can be used to control this download
  */
 struct GNUNET_FS_DownloadContext *
-GNUNET_FS_file_download_start (struct GNUNET_FS_Handle *h,
-                              const struct GNUNET_FS_Uri *uri,
-                              const char *filename,
-                              unsigned long long offset,
-                              unsigned long long length,
-                              unsigned int anonymity,
-                              int no_temporaries,      
-                              int recursive,
-                              struct GNUNET_FS_DownloadContext *parent);
-
-
-/**
- * Stop a download (aborts if download is incomplete).
+GNUNET_FS_download_start (struct GNUNET_FS_Handle *h,
+                         const struct GNUNET_FS_Uri *uri,
+                         const struct GNUNET_CONTAINER_MetaData *meta,
+                         const char *filename,
+                         const char *tempname,
+                         uint64_t offset,
+                         uint64_t length,
+                         uint32_t anonymity,
+                         enum GNUNET_FS_DownloadOptions options,
+                         void *cctx,
+                         struct GNUNET_FS_DownloadContext *parent);
+
+
+/**
+ * Download parts of a file based on a search result.  The download
+ * will be associated with the search result (and the association
+ * will be preserved when serializing/deserializing the state).
+ * If the search is stopped, the download will not be aborted but
+ * be 'promoted' to a stand-alone download.
  *
- * @param rm handle for the download
- * @param do_delete delete files of incomplete downloads
- */
-void
-GNUNET_FS_file_download_stop (struct GNUNET_FS_DownloadContext *rm,
-                             int do_delete);
-
-
-/**
- * Iterate over all entries in a directory.  Note that directories
- * are structured such that it is possible to iterate over the
- * individual blocks as well as over the entire directory.  Thus
- * a client can call this function on the buffer in the
- * GNUNET_FS_ProgressCallback.
+ * As with the other download function, this will store
+ * the blocks at the respective offset in the given file.  Also, the
+ * download is still using the blocking of the underlying FS
+ * encoding.  As a result, the download may *write* outside of the
+ * given boundaries (if offset and length do not match the 32k FS
+ * block boundaries). <p>
  *
- * @param size number of bytes in data
- * @param data pointer to the beginning of the directory
- * @param offset offset of data in the directory
- * @param spcb function to call on each entry
- * @param spcb_cls closure for spcb
+ * The given range can be used to focus a download towards a
+ * particular portion of the file (optimization), not to strictly
+ * limit the download to exactly those bytes.
+ *
+ * @param h handle to the file sharing subsystem
+ * @param sr the search result to use for the download (determines uri and
+ *        meta data and associations)
+ * @param filename where to store the file, maybe NULL (then no file is
+ *        created on disk and data must be grabbed from the callbacks)
+ * @param tempname where to store temporary file data, not used if filename is non-NULL;
+ *        can be NULL (in which case we will pick a name if needed); the temporary file
+ *        may already exist, in which case we will try to use the data that is there and
+ *        if it is not what is desired, will overwrite it
+ * @param offset at what offset should we start the download (typically 0)
+ * @param length how many bytes should be downloaded starting at offset
+ * @param anonymity anonymity level to use for the download
+ * @param options various download options
+ * @param cctx initial value for the client context for this download
+ * @return context that can be used to control this download
  */
-void 
-GNUNET_FS_directory_list_contents (size_t size,
-                                  const void *data,
-                                  uint64_t offset,
-                                  GNUNET_FS_SearchResultProcessor spcb, 
-                                  void *spcb_cls);
+struct GNUNET_FS_DownloadContext *
+GNUNET_FS_download_start_from_search (struct GNUNET_FS_Handle *h,
+                                     struct GNUNET_FS_SearchResult *sr,
+                                     const char *filename,
+                                     const char *tempname,
+                                     uint64_t offset,
+                                     uint64_t length,
+                                     uint32_t anonymity,
+                                     enum GNUNET_FS_DownloadOptions options,
+                                     void *cctx);
 
 
 /**
- * Create a directory.
+ * Stop a download (aborts if download is incomplete).
  *
- * @param data pointer set to the beginning of the directory
- * @param len set to number of bytes in data
- * @param count number of entries in uris and metaDatas
-
- * @param uris URIs of the files in the directory
- * @param metaDatas meta-data for the files (must match
- *        respective values at same offset in in uris)
- * @param meta meta-data for the directory.  The meta entry
- *        is extended with the mime-type for a GNUnet directory.
-
- * @return GNUNET_OK on success, GNUNET_SYSERR on error
- * @deprecated (not powerful enough?)
+ * @param dc handle for the download
+ * @param do_delete delete files of incomplete downloads
  */
-int 
-GNUNET_FS_directory_create (char **data,
-                           uint64_t *len,
-                           unsigned int count,
-                           const GNUNET_FS_FileInfo * fis,
-                           struct GNUNET_MetaData *meta);
+void
+GNUNET_FS_download_stop (struct GNUNET_FS_DownloadContext *dc,
+                        int do_delete);
 
 
 /**
@@ -927,7 +2485,7 @@ GNUNET_FS_collection_start (struct GNUNET_FS_Handle *h,
  * @return GNUNET_OK on success, GNUNET_SYSERR if no collection is active
  */
 int 
-GNUNET_CO_collection_stop (struct GNUNET_FS_Handle *h);
+GNUNET_FS_collection_stop (struct GNUNET_FS_Handle *h);
 
 
 /**
@@ -966,6 +2524,143 @@ void GNUNET_FS_collection_add (const struct GNUNET_FS_Handle *h,
 
 
 
+
+
+/* ******************** Directory API *********************** */
+
+
+#define GNUNET_FS_DIRECTORY_MIME  "application/gnunet-directory"
+#define GNUNET_FS_DIRECTORY_MAGIC "\211GND\r\n\032\n"
+#define GNUNET_FS_DIRECTORY_EXT   ".gnd"
+
+/**
+ * Does the meta-data claim that this is a directory?
+ * Checks if the mime-type is that of a GNUnet directory.
+ *
+ * @return GNUNET_YES if it is, GNUNET_NO if it is not, GNUNET_SYSERR if
+ *  we have no mime-type information (treat as 'GNUNET_NO')
+ */
+int 
+GNUNET_FS_meta_data_test_for_directory (const struct GNUNET_CONTAINER_MetaData *md);
+
+
+/**
+ * Set the MIMETYPE information for the given
+ * metadata to "application/gnunet-directory".
+ * 
+ * @param md metadata to add mimetype to
+ */
+void
+GNUNET_FS_meta_data_make_directory (struct GNUNET_CONTAINER_MetaData *md);
+
+
+/**
+ * Suggest a filename based on given metadata.
+ * 
+ * @param md given meta data
+ * @return NULL if meta data is useless for suggesting a filename
+ */
+char *
+GNUNET_FS_meta_data_suggest_filename (const struct GNUNET_CONTAINER_MetaData *md);
+
+
+/**
+ * Function used to process entries in a directory.
+ *
+ * @param cls closure
+ * @param filename name of the file in the directory
+ * @param uri URI of the file
+ * @param metadata metadata for the file; metadata for
+ *        the directory if everything else is NULL/zero
+ * @param length length of the available data for the file
+ *           (of type size_t since data must certainly fit
+ *            into memory; if files are larger than size_t
+ *            permits, then they will certainly not be
+ *            embedded with the directory itself).
+ * @param data data available for the file (length bytes)
+ */
+typedef void (*GNUNET_FS_DirectoryEntryProcessor)(void *cls,
+                                                 const char *filename,
+                                                 const struct GNUNET_FS_Uri *uri,
+                                                 const struct GNUNET_CONTAINER_MetaData *meta,
+                                                 size_t length,
+                                                 const void *data);
+
+
+/**
+ * Iterate over all entries in a directory.  Note that directories
+ * are structured such that it is possible to iterate over the
+ * individual blocks as well as over the entire directory.  Thus
+ * a client can call this function on the buffer in the
+ * GNUNET_FS_ProgressCallback.  Also, directories can optionally
+ * include the contents of (small) files embedded in the directory
+ * itself; for those files, the processor may be given the
+ * contents of the file directly by this function.
+ *
+ * @param size number of bytes in data
+ * @param data pointer to the beginning of the directory
+ * @param offset offset of data in the directory
+ * @param dep function to call on each entry
+ * @param dep_cls closure for dep
+ * @return GNUNET_OK if this could be a block in a directory,
+ *         GNUNET_NO if this could be part of a directory (but not 100% OK)
+ *         GNUNET_SYSERR if 'data' does not represent a directory
+ */
+int 
+GNUNET_FS_directory_list_contents (size_t size,
+                                  const void *data,
+                                  uint64_t offset,
+                                  GNUNET_FS_DirectoryEntryProcessor dep, 
+                                  void *dep_cls);
+
+
+/**
+ * Opaque handle to a directory builder.
+ */
+struct GNUNET_FS_DirectoryBuilder;
+
+/**
+ * Create a directory builder.
+ * 
+ * @param mdir metadata for the directory
+ */
+struct GNUNET_FS_DirectoryBuilder *
+GNUNET_FS_directory_builder_create (const struct GNUNET_CONTAINER_MetaData *mdir);
+
+
+/**
+ * Add an entry to a directory.
+ * 
+ * @param bld directory to extend
+ * @param uri uri of the entry (must not be a KSK)
+ * @param md metadata of the entry
+ * @param data raw data of the entry, can be NULL, otherwise
+ *        data must point to exactly the number of bytes specified
+ *        by the uri
+ */
+void
+GNUNET_FS_directory_builder_add (struct GNUNET_FS_DirectoryBuilder *bld,
+                                const struct GNUNET_FS_Uri *uri,
+                                const struct GNUNET_CONTAINER_MetaData *md,
+                                const void *data);
+                
+
+/**
+ * Finish building the directory.  Frees the
+ * builder context and returns the directory
+ * in-memory.
+ *
+ * @param bld directory to finish
+ * @param rsize set to the number of bytes needed
+ * @param rdata set to the encoded directory
+ * @return GNUNET_OK on success
+ */
+int
+GNUNET_FS_directory_builder_finish (struct GNUNET_FS_DirectoryBuilder *bld,
+                                   size_t *rsize,
+                                   void **rdata);
+
+
 #if 0                           /* keep Emacsens' auto-indent happy */
 {
 #endif