Source code pulled from OpenBSD for OpenNTPD. The place to contribute to this code is via the OpenBSD CVS tree.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

125 lines
5.0 KiB

  1. /* $OpenBSD: fts.h,v 1.14 2012/12/05 23:19:57 deraadt Exp $ */
  2. /* $NetBSD: fts.h,v 1.5 1994/12/28 01:41:50 mycroft Exp $ */
  3. /*
  4. * Copyright (c) 1989, 1993
  5. * The Regents of the University of California. All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions
  9. * are met:
  10. * 1. Redistributions of source code must retain the above copyright
  11. * notice, this list of conditions and the following disclaimer.
  12. * 2. Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in the
  14. * documentation and/or other materials provided with the distribution.
  15. * 3. Neither the name of the University nor the names of its contributors
  16. * may be used to endorse or promote products derived from this software
  17. * without specific prior written permission.
  18. *
  19. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  20. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  21. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  22. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  23. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  24. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  25. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  26. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  27. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  28. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  29. * SUCH DAMAGE.
  30. *
  31. * @(#)fts.h 8.3 (Berkeley) 8/14/94
  32. */
  33. #ifndef _FTS_H_
  34. #define _FTS_H_
  35. typedef struct {
  36. struct _ftsent *fts_cur; /* current node */
  37. struct _ftsent *fts_child; /* linked list of children */
  38. struct _ftsent **fts_array; /* sort array */
  39. dev_t fts_dev; /* starting device # */
  40. char *fts_path; /* path for this descent */
  41. int fts_rfd; /* fd for root */
  42. size_t fts_pathlen; /* sizeof(path) */
  43. int fts_nitems; /* elements in the sort array */
  44. int (*fts_compar)(); /* compare function */
  45. #define FTS_COMFOLLOW 0x0001 /* follow command line symlinks */
  46. #define FTS_LOGICAL 0x0002 /* logical walk */
  47. #define FTS_NOCHDIR 0x0004 /* don't change directories */
  48. #define FTS_NOSTAT 0x0008 /* don't get stat info */
  49. #define FTS_PHYSICAL 0x0010 /* physical walk */
  50. #define FTS_SEEDOT 0x0020 /* return dot and dot-dot */
  51. #define FTS_XDEV 0x0040 /* don't cross devices */
  52. #define FTS_OPTIONMASK 0x00ff /* valid user option mask */
  53. #define FTS_NAMEONLY 0x1000 /* (private) child names only */
  54. #define FTS_STOP 0x2000 /* (private) unrecoverable error */
  55. int fts_options; /* fts_open options, global flags */
  56. } FTS;
  57. typedef struct _ftsent {
  58. struct _ftsent *fts_cycle; /* cycle node */
  59. struct _ftsent *fts_parent; /* parent directory */
  60. struct _ftsent *fts_link; /* next file in directory */
  61. long fts_number; /* local numeric value */
  62. void *fts_pointer; /* local address value */
  63. char *fts_accpath; /* access path */
  64. char *fts_path; /* root path */
  65. int fts_errno; /* errno for this node */
  66. int fts_symfd; /* fd for symlink */
  67. size_t fts_pathlen; /* strlen(fts_path) */
  68. size_t fts_namelen; /* strlen(fts_name) */
  69. ino_t fts_ino; /* inode */
  70. dev_t fts_dev; /* device */
  71. nlink_t fts_nlink; /* link count */
  72. #define FTS_ROOTPARENTLEVEL -1
  73. #define FTS_ROOTLEVEL 0
  74. #define FTS_MAXLEVEL 0x7fffffff
  75. int fts_level; /* depth (-1 to N) */
  76. #define FTS_D 1 /* preorder directory */
  77. #define FTS_DC 2 /* directory that causes cycles */
  78. #define FTS_DEFAULT 3 /* none of the above */
  79. #define FTS_DNR 4 /* unreadable directory */
  80. #define FTS_DOT 5 /* dot or dot-dot */
  81. #define FTS_DP 6 /* postorder directory */
  82. #define FTS_ERR 7 /* error; errno is set */
  83. #define FTS_F 8 /* regular file */
  84. #define FTS_INIT 9 /* initialized only */
  85. #define FTS_NS 10 /* stat(2) failed */
  86. #define FTS_NSOK 11 /* no stat(2) requested */
  87. #define FTS_SL 12 /* symbolic link */
  88. #define FTS_SLNONE 13 /* symbolic link without target */
  89. unsigned short fts_info; /* user flags for FTSENT structure */
  90. #define FTS_DONTCHDIR 0x01 /* don't chdir .. to the parent */
  91. #define FTS_SYMFOLLOW 0x02 /* followed a symlink to get here */
  92. unsigned short fts_flags; /* private flags for FTSENT structure */
  93. #define FTS_AGAIN 1 /* read node again */
  94. #define FTS_FOLLOW 2 /* follow symbolic link */
  95. #define FTS_NOINSTR 3 /* no instructions */
  96. #define FTS_SKIP 4 /* discard node */
  97. unsigned short fts_instr; /* fts_set() instructions */
  98. unsigned short fts_spare; /* unused */
  99. struct stat *fts_statp; /* stat(2) information */
  100. char fts_name[1]; /* file name */
  101. } FTSENT;
  102. __BEGIN_DECLS
  103. FTSENT *fts_children(FTS *, int);
  104. int fts_close(FTS *);
  105. FTS *fts_open(char * const *, int,
  106. int (*)(const FTSENT **, const FTSENT **));
  107. FTSENT *fts_read(FTS *);
  108. int fts_set(FTS *, FTSENT *, int);
  109. __END_DECLS
  110. #endif /* !_FTS_H_ */