2012-05-27 08:32:27 -04:00
|
|
|
/*******************************************************************************
|
|
|
|
|
2014-01-03 16:20:52 -05:00
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2012, 2014.
|
2012-05-27 08:32:27 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
This file is part of Sortix.
|
2012-05-27 08:32:27 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
Sortix is free software: you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation, either version 3 of the License, or (at your option) any later
|
|
|
|
version.
|
2012-05-27 08:32:27 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
Sortix is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
details.
|
2012-05-27 08:32:27 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
Sortix. If not, see <http://www.gnu.org/licenses/>.
|
2012-05-27 08:32:27 -04:00
|
|
|
|
2012-08-07 18:19:44 -04:00
|
|
|
sortix/dirent.h
|
|
|
|
Format of directory entries.
|
2012-05-27 08:32:27 -04:00
|
|
|
|
|
|
|
*******************************************************************************/
|
|
|
|
|
2012-08-07 18:19:44 -04:00
|
|
|
#ifndef INCLUDE_SORTIX_DIRENT_H
|
|
|
|
#define INCLUDE_SORTIX_DIRENT_H
|
2012-05-27 08:32:27 -04:00
|
|
|
|
2013-10-13 07:04:27 -04:00
|
|
|
#include <sys/cdefs.h>
|
2012-05-27 08:32:27 -04:00
|
|
|
|
2014-01-03 16:20:52 -05:00
|
|
|
#include <sys/__/types.h>
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include <sortix/__/dirent.h>
|
|
|
|
#include <sortix/__/dt.h>
|
|
|
|
|
2012-08-07 18:19:44 -04:00
|
|
|
__BEGIN_DECLS
|
2012-05-27 08:32:27 -04:00
|
|
|
|
2014-01-03 16:20:52 -05:00
|
|
|
#ifndef __dev_t_defined
|
|
|
|
#define __dev_t_defined
|
|
|
|
typedef __dev_t dev_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __ino_t_defined
|
|
|
|
#define __ino_t_defined
|
|
|
|
typedef __ino_t ino_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __size_t_defined
|
|
|
|
#define __size_t_defined
|
|
|
|
#define __need_size_t
|
|
|
|
#include <stddef.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef NULL
|
|
|
|
#define __need_NULL
|
|
|
|
#include <stddef.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define DT_UNKNOWN __DT_UNKNOWN
|
|
|
|
#define DT_BLK __DT_BLK
|
|
|
|
#define DT_CHR __DT_CHR
|
|
|
|
#define DT_DIR __DT_DIR
|
|
|
|
#define DT_FIFO __DT_FIFO
|
|
|
|
#define DT_LNK __DT_LNK
|
|
|
|
#define DT_REG __DT_REG
|
|
|
|
#define DT_SOCK __DT_SOCK
|
|
|
|
|
|
|
|
#define IFTODT(x) __IFTODT(x)
|
|
|
|
#define DTTOIF(x) __DTTOIF(x)
|
2012-05-27 08:32:27 -04:00
|
|
|
|
2012-08-07 18:19:44 -04:00
|
|
|
struct kernel_dirent
|
|
|
|
{
|
|
|
|
size_t d_reclen;
|
2014-01-03 17:21:43 -05:00
|
|
|
size_t d_nextoff;
|
2014-01-03 16:09:36 -05:00
|
|
|
size_t d_namlen;
|
2012-08-07 18:19:44 -04:00
|
|
|
ino_t d_ino;
|
|
|
|
dev_t d_dev;
|
|
|
|
unsigned char d_type;
|
|
|
|
char d_name[];
|
2012-05-27 08:32:27 -04:00
|
|
|
};
|
|
|
|
|
2012-08-07 18:19:44 -04:00
|
|
|
static inline struct kernel_dirent* kernel_dirent_next(struct kernel_dirent* ent)
|
|
|
|
{
|
2014-01-03 17:21:43 -05:00
|
|
|
if ( !ent->d_nextoff )
|
2012-08-07 18:19:44 -04:00
|
|
|
return NULL;
|
2014-01-03 17:21:43 -05:00
|
|
|
return (struct kernel_dirent*) ((uint8_t*) ent + ent->d_nextoff);
|
2012-08-07 18:19:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
__END_DECLS
|
2012-05-27 08:32:27 -04:00
|
|
|
|
|
|
|
#endif
|