f4ede13845f122181cef5c8a235351eccfdb0111
[oweals/gnunet.git] / src / include / gnunet_disk_lib.h
1 /*
2      This file is part of GNUnet.
3      (C) 2001, 2002, 2003, 2004, 2005, 2006, 2009 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 2, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file include/gnunet_disk_lib.h
23  * @brief disk IO apis
24  */
25 #ifndef GNUNET_DISK_LIB_H
26 #define GNUNET_DISK_LIB_H
27
28 /**
29  * Opaque handle used to access files.
30  */
31 struct GNUNET_DISK_FileHandle;
32
33 /**
34  * Handle used to manage a pipe.
35  */
36 struct GNUNET_DISK_PipeHandle;
37
38
39 /* we need size_t, and since it can be both unsigned int
40    or unsigned long long, this IS platform dependent;
41    but "stdlib.h" should be portable 'enough' to be
42    unconditionally available... */
43 #include <stdlib.h>
44 #include "gnunet_configuration_lib.h"
45 #include "gnunet_scheduler_lib.h"
46
47 #ifdef __cplusplus
48 extern "C"
49 {
50 #if 0                           /* keep Emacsens' auto-indent happy */
51 }
52 #endif
53 #endif
54
55
56 /**
57  * Specifies how a file should be opened.
58  */
59 enum GNUNET_DISK_OpenFlags
60   {
61
62     /**
63      * Open the file for reading 
64      */
65     GNUNET_DISK_OPEN_READ = 1,
66     
67     /**
68      * Open the file for writing 
69      */
70     GNUNET_DISK_OPEN_WRITE = 2,
71     
72     /**
73      * Open the file for both reading and writing 
74      */
75     GNUNET_DISK_OPEN_READWRITE = 3,
76     
77     /**
78      * Fail if file already exists 
79      */
80     GNUNET_DISK_OPEN_FAILIFEXISTS = 4,
81     
82     /**
83      * Truncate file if it exists 
84      */
85     GNUNET_DISK_OPEN_TRUNCATE = 8,
86     
87     /**
88      * Create file if it doesn't exist 
89      */
90     GNUNET_DISK_OPEN_CREATE = 16,
91
92     /**
93      * Append to the file 
94      */
95     GNUNET_DISK_OPEN_APPEND = 32
96   };
97
98 /**
99  * Specifies what type of memory map is desired.
100  */
101 enum GNUNET_DISK_MapType
102   {
103     /**
104      * Read-only memory map.
105      */
106     GNUNET_DISK_MAP_TYPE_READ = 1,
107
108     /**
109      * Write-able memory map.
110      */
111     GNUNET_DISK_MAP_TYPE_WRITE = 2,
112     /**
113      * Read-write memory map.
114      */
115     GNUNET_DISK_MAP_TYPE_READWRITE = 3
116   };
117
118
119 /**
120  * File access permissions, UNIX-style.
121  */
122 enum GNUNET_DISK_AccessPermissions
123   {
124     /**
125      * Nobody is allowed to do anything to the file.
126      */
127     GNUNET_DISK_PERM_NONE = 0,
128
129     /**
130      * Owner can read.
131      */
132     GNUNET_DISK_PERM_USER_READ = 1,
133
134     /**
135      * Owner can write.
136      */
137     GNUNET_DISK_PERM_USER_WRITE = 2,
138
139     /**
140      * Owner can execute.
141      */
142     GNUNET_DISK_PERM_USER_EXEC = 4,
143
144     /**
145      * Group can read.
146      */
147     GNUNET_DISK_PERM_GROUP_READ = 8,
148
149     /**
150      * Group can write.
151      */
152     GNUNET_DISK_PERM_GROUP_WRITE = 16,
153
154     /**
155      * Group can execute.
156      */
157     GNUNET_DISK_PERM_GROUP_EXEC = 32,
158
159     /**
160      * Everybody can read.
161      */
162     GNUNET_DISK_PERM_OTHER_READ = 64,
163
164     /**
165      * Everybody can write.
166      */
167     GNUNET_DISK_PERM_OTHER_WRITE = 128,
168
169     /**
170      * Everybody can execute.
171      */
172     GNUNET_DISK_PERM_OTHER_EXEC = 256
173   };
174
175
176 /**
177  * Constants for specifying how to seek.
178  */
179 enum GNUNET_DISK_Seek 
180   {
181     /**
182      * Seek an absolute position (from the start of the file).
183      */
184     GNUNET_DISK_SEEK_SET, 
185
186     /**
187      * Seek a relative position (from the current offset).
188      */
189     GNUNET_DISK_SEEK_CUR, 
190     
191     /**
192      * Seek an absolute position from the end of the file.
193      */
194     GNUNET_DISK_SEEK_END
195   };
196
197
198 /**
199  * Enumeration identifying the two ends of a pipe.
200  */
201 enum GNUNET_DISK_PipeEnd
202   {
203     /**
204      * The reading-end of a pipe.
205      */
206     GNUNET_DISK_PIPE_END_READ = 0,
207
208     /**
209      * The writing-end of a pipe.
210      */
211     GNUNET_DISK_PIPE_END_WRITE = 1
212   };
213
214
215 /**
216  * Get the number of blocks that are left on the partition that
217  * contains the given file (for normal users).
218  *
219  * @param part a file on the partition to check
220  * @return -1 on errors, otherwise the number of free blocks
221  */
222 long GNUNET_DISK_get_blocks_available (const char *part);
223
224
225 /**
226  * Checks whether a handle is invalid
227  *
228  * @param h handle to check
229  * @return GNUNET_YES if invalid, GNUNET_NO if valid
230  */
231 int GNUNET_DISK_handle_invalid (const struct GNUNET_DISK_FileHandle *h);
232
233
234 /**
235  * Check that fil corresponds to a filename
236  * (of a file that exists and that is not a directory).
237  *
238  * @param fil filename to check
239  * @return GNUNET_YES if yes, GNUNET_NO if not a file, GNUNET_SYSERR if something
240  * else (will print an error message in that case, too).
241  */
242 int GNUNET_DISK_file_test (const char *fil);
243
244
245 /**
246  * Move the read/write pointer in a file
247  * @param h handle of an open file
248  * @param offset position to move to
249  * @param whence specification to which position the offset parameter relates to
250  * @return the new position on success, GNUNET_SYSERR otherwise
251  */
252 off_t
253 GNUNET_DISK_file_seek (const struct GNUNET_DISK_FileHandle *h, 
254                        off_t offset,
255                        enum GNUNET_DISK_Seek whence);
256
257
258 /**
259  * Get the size of the file (or directory)
260  * of the given file (in bytes).
261  *
262  * @param filename name of the file or directory
263  * @param size set to the size of the file (or,
264  *             in the case of directories, the sum
265  *             of all sizes of files in the directory)
266  * @param includeSymLinks should symbolic links be
267  *        included?
268  * @return GNUNET_OK on success, GNUNET_SYSERR on error
269  */
270 int GNUNET_DISK_file_size (const char *filename,
271                            uint64_t *size, 
272                            int includeSymLinks);
273
274
275 /**
276  * Obtain some unique identifiers for the given file
277  * that can be used to identify it in the local system.
278  * This function is used between GNUnet processes to
279  * quickly check if two files with the same absolute path
280  * are actually identical.  The two processes represent
281  * the same peer but may communicate over the network
282  * (and the file may be on an NFS volume).  This function
283  * may not be supported on all operating systems.
284  *
285  * @param filename name of the file
286  * @param dev set to the device ID
287  * @param ino set to the inode ID
288  * @return GNUNET_OK on success
289  */
290 int GNUNET_DISK_file_get_identifiers (const char *filename,
291                                       uint32_t *dev,
292                                       uint64_t *ino);
293  
294
295 /**
296  * Create an (empty) temporary file on disk.
297  * 
298  * @param t component to use for the name;
299  *        does NOT contain "XXXXXX" or "/tmp/".
300  * @return NULL on error, otherwise name of fresh
301  *         file on disk in directory for temporary files
302  */
303 char *
304 GNUNET_DISK_mktemp (const char *t);
305
306
307 /**
308  * Open a file.  Note that the access permissions will only be
309  * used if a new file is created and if the underlying operating
310  * system supports the given permissions.
311  *
312  * @param fn file name to be opened
313  * @param flags opening flags, a combination of GNUNET_DISK_OPEN_xxx bit flags
314  * @param perm permissions for the newly created file, use
315  *             GNUNET_DISK_PERM_USER_NONE if a file could not be created by this
316  *             call (because of flags)
317  * @return IO handle on success, NULL on error
318  */
319 struct GNUNET_DISK_FileHandle *GNUNET_DISK_file_open (const char *fn,
320                                                       enum GNUNET_DISK_OpenFlags flags,
321                                                       enum GNUNET_DISK_AccessPermissions perm);
322
323 /**
324  * Creates an interprocess channel
325  * @param blocking creates an asynchronous pipe if set to GNUNET_NO
326  * @return handle to the new pipe, NULL on error
327  */
328 struct GNUNET_DISK_PipeHandle *GNUNET_DISK_pipe (int blocking);
329
330
331 /**
332  * Closes an interprocess channel
333  * @param p pipe
334  * @return GNUNET_OK on success, GNUNET_SYSERR otherwise
335  */
336 int GNUNET_DISK_pipe_close (struct GNUNET_DISK_PipeHandle *p);
337
338 /**
339  * Closes one half of an interprocess channel
340  *
341  * @param p pipe to close end of
342  * @param end which end of the pipe to close
343  */
344 int
345 GNUNET_DISK_pipe_close_end (struct GNUNET_DISK_PipeHandle *p, enum GNUNET_DISK_PipeEnd end);
346
347 /**
348  * Close an open file.
349  *
350  * @param h file handle
351  * @return GNUNET_OK on success, GNUNET_SYSERR otherwise
352  */
353 int GNUNET_DISK_file_close (struct GNUNET_DISK_FileHandle *h);
354
355
356 /**
357  * Get the handle to a particular pipe end
358  * @param p pipe
359  * @param n end to access
360  * @return handle for the respective end
361  */
362 const struct GNUNET_DISK_FileHandle *
363 GNUNET_DISK_pipe_handle (const struct
364                          GNUNET_DISK_PipeHandle
365                          *p, 
366                          enum GNUNET_DISK_PipeEnd n);
367
368 /**
369  * Read the contents of a binary file into a buffer.
370  * @param h handle to an open file
371  * @param result the buffer to write the result to
372  * @param len the maximum number of bytes to read
373  * @return the number of bytes read on success, GNUNET_SYSERR on failure
374  */
375 ssize_t GNUNET_DISK_file_read (const struct GNUNET_DISK_FileHandle *h, void *result, 
376                                size_t len);
377
378
379 /**
380  * Read the contents of a binary file into a buffer.
381  *
382  * @param fn file name
383  * @param result the buffer to write the result to
384  * @param len the maximum number of bytes to read
385  * @return number of bytes read, GNUNET_SYSERR on failure
386  */
387 ssize_t GNUNET_DISK_fn_read (const char *fn, 
388                              void *result, 
389                              size_t len);
390
391
392 /**
393  * Write a buffer to a file.
394  *
395  * @param h handle to open file
396  * @param buffer the data to write
397  * @param n number of bytes to write
398  * @return number of bytes written on success, GNUNET_SYSERR on error
399  */
400 ssize_t GNUNET_DISK_file_write (const struct GNUNET_DISK_FileHandle *h, 
401                                 const void *buffer,
402                                 size_t n);
403
404
405 /**
406  * Write a buffer to a file.  If the file is longer than
407  * the given buffer size, it will be truncated.
408  *
409  * @param fn file name
410  * @param buffer the data to write
411  * @param n number of bytes to write
412  * @param mode file permissions 
413  * @return number of bytes written on success, GNUNET_SYSERR on error
414  */
415 ssize_t GNUNET_DISK_fn_write (const char *fn, 
416                               const void *buffer,
417                               size_t n, 
418                               enum GNUNET_DISK_AccessPermissions mode);
419
420
421 /**
422  * Copy a file.
423  *
424  * @param src file to copy
425  * @param dst destination file name
426  * @return GNUNET_OK on success, GNUNET_SYSERR on error
427  */
428 int GNUNET_DISK_file_copy (const char *src, const char *dst);
429
430
431 /**
432  * Scan a directory for files.
433  *
434  * @param dirName the name of the directory
435  * @param callback the method to call for each file
436  * @param callback_cls closure for callback
437  * @return the number of files found, -1 on error
438  */
439 int GNUNET_DISK_directory_scan (const char *dirName,
440                                 GNUNET_FileNameCallback callback, 
441                                 void *callback_cls);
442
443
444 /**
445  * Opaque handle used for iterating over a directory.
446  */
447 struct GNUNET_DISK_DirectoryIterator;
448
449
450 /**
451  * Function called to iterate over a directory.
452  *
453  * @param cls closure
454  * @param di argument to pass to "GNUNET_DISK_directory_iterator_next" to
455  *           get called on the next entry (or finish cleanly)
456  * @param filename complete filename (absolute path)
457  * @param dirname directory name (absolute path)
458  */
459 typedef void (*GNUNET_DISK_DirectoryIteratorCallback) (void *cls,
460                                                        struct
461                                                        GNUNET_DISK_DirectoryIterator
462                                                        * di,
463                                                        const char *filename,
464                                                        const char *dirname);
465
466
467 /**
468  * This function must be called during the DiskIteratorCallback
469  * (exactly once) to schedule the task to process the next
470  * filename in the directory (if there is one).
471  *
472  * @param iter opaque handle for the iterator
473  * @param can set to GNUNET_YES to terminate the iteration early
474  * @return GNUNET_YES if iteration will continue,
475  *         GNUNET_NO if this was the last entry (and iteration is complete),
476  *         GNUNET_SYSERR if "can" was YES
477  */
478 int GNUNET_DISK_directory_iterator_next (struct GNUNET_DISK_DirectoryIterator
479                                          *iter, int can);
480
481
482 /**
483  * Scan a directory for files using the scheduler to run a task for
484  * each entry.  The name of the directory must be expanded first (!).
485  * If a scheduler does not need to be used, GNUNET_DISK_directory_scan
486  * may provide a simpler API.
487  *
488  * @param sched scheduler to use
489  * @param prio priority to use
490  * @param dirName the name of the directory
491  * @param callback the method to call for each file
492  * @param callback_cls closure for callback
493  */
494 void GNUNET_DISK_directory_iterator_start (struct GNUNET_SCHEDULER_Handle
495                                            *sched,
496                                            enum GNUNET_SCHEDULER_Priority
497                                            prio, const char *dirName,
498                                            GNUNET_DISK_DirectoryIteratorCallback
499                                            callback, void *callback_cls);
500
501
502 /**
503  * Create the directory structure for storing
504  * a file.
505  *
506  * @param filename name of a file in the directory
507  * @returns GNUNET_OK on success, GNUNET_SYSERR on failure,
508  *          GNUNET_NO if directory exists but is not writeable
509  */
510 int GNUNET_DISK_directory_create_for_file (const char *filename);
511
512
513 /**
514  * Test if "fil" is a directory that can be accessed.
515  * Will not print an error message if the directory
516  * does not exist.  Will log errors if GNUNET_SYSERR is
517  * returned.
518  *
519  * @param fil filename to test
520  * @return GNUNET_YES if yes, GNUNET_NO if does not exist, GNUNET_SYSERR
521  *   on any error and if exists but not directory
522  */
523 int GNUNET_DISK_directory_test (const char *fil);
524
525
526 /**
527  * Remove all files in a directory (rm -rf). Call with
528  * caution.
529  *
530  * @param fileName the file to remove
531  * @return GNUNET_OK on success, GNUNET_SYSERR on error
532  */
533 int GNUNET_DISK_directory_remove (const char *fileName);
534
535
536 /**
537  * Implementation of "mkdir -p"
538  *
539  * @param dir the directory to create
540  * @returns GNUNET_SYSERR on failure, GNUNET_OK otherwise
541  */
542 int GNUNET_DISK_directory_create (const char *dir);
543
544
545 /**
546  * Lock a part of a file.
547  *
548  * @param fh file handle
549  * @param lockStart absolute position from where to lock
550  * @param lockEnd absolute position until where to lock
551  * @param excl GNUNET_YES for an exclusive lock
552  * @return GNUNET_OK on success, GNUNET_SYSERR on error
553  */
554 int
555 GNUNET_DISK_file_lock (struct GNUNET_DISK_FileHandle *fh, off_t lockStart,
556     off_t lockEnd, int excl);
557
558
559 /**
560  * Unlock a part of a file
561  * @param fh file handle
562  * @param unlockStart absolute position from where to unlock
563  * @param unlockEnd absolute position until where to unlock
564  * @return GNUNET_OK on success, GNUNET_SYSERR on error
565  */
566 int
567 GNUNET_DISK_file_unlock (struct GNUNET_DISK_FileHandle *fh, off_t unlockStart,
568     off_t unlockEnd);
569
570
571 /**
572  * @brief Removes special characters as ':' from a filename.
573  * @param fn the filename to canonicalize
574  */
575 void GNUNET_DISK_filename_canonicalize (char *fn);
576
577
578 /**
579  * @brief Change owner of a file
580  * @param filename file to change
581  * @param user new owner of the file
582  * @return GNUNET_OK on success, GNUNET_SYSERR on failure
583  */
584 int GNUNET_DISK_file_change_owner (const char *filename, const char *user);
585
586
587 /**
588  * Construct full path to a file inside of the private
589  * directory used by GNUnet.  Also creates the corresponding
590  * directory.  If the resulting name is supposed to be
591  * a directory, end the last argument in '/' (or pass
592  * DIR_SEPARATOR_STR as the last argument before NULL).
593  *
594  * @param cfg configuration to use
595  * @param serviceName name of the service asking
596  * @param ... is NULL-terminated list of
597  *                path components to append to the
598  *                private directory name.
599  * @return the constructed filename
600  */
601 char *GNUNET_DISK_get_home_filename (const struct GNUNET_CONFIGURATION_Handle *cfg,
602                                      const char *serviceName, ...);
603
604
605 /**
606  * Opaque handle for a memory-mapping operation.
607  */
608 struct GNUNET_DISK_MapHandle;
609
610 /**
611  * Map a file into memory
612  * @param h open file handle
613  * @param m handle to the new mapping (will be set)
614  * @param access access specification, GNUNET_DISK_MAP_TYPE_xxx
615  * @param len size of the mapping
616  * @return pointer to the mapped memory region, NULL on failure
617  */
618 void *GNUNET_DISK_file_map (const struct GNUNET_DISK_FileHandle *h, 
619                             struct GNUNET_DISK_MapHandle **m,
620                             enum GNUNET_DISK_MapType access, size_t len);
621
622 /**
623  * Unmap a file
624  *
625  * @param h mapping handle
626  * @return GNUNET_OK on success, GNUNET_SYSERR otherwise
627  */
628 int GNUNET_DISK_file_unmap (struct GNUNET_DISK_MapHandle *h);
629
630 /**
631  * Write file changes to disk
632  * @param h handle to an open file
633  * @return GNUNET_OK on success, GNUNET_SYSERR otherwise
634  */
635 int GNUNET_DISK_file_sync (const struct GNUNET_DISK_FileHandle *h);
636
637 #if 0                           /* keep Emacsens' auto-indent happy */
638 {
639 #endif
640 #ifdef __cplusplus
641 }
642 #endif
643
644
645 /* ifndef GNUNET_DISK_LIB_H */
646 #endif
647 /* end of gnunet_disk_lib.h */