netatalk  4.4.0
Free and Open Source Apple Filing Protocol (AFP) Server
Loading...
Searching...
No Matches
include/atalk/directory.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 1990,1991 Regents of The University of Michigan.
3 * All Rights Reserved.
4 *
5 * Permission to use, copy, modify, and distribute this software and
6 * its documentation for any purpose and without fee is hereby granted,
7 * provided that the above copyright notice appears in all copies and
8 * that both that copyright notice and this permission notice appear
9 * in supporting documentation, and that the name of The University
10 * of Michigan not be used in advertising or publicity pertaining to
11 * distribution of the software without specific, written prior
12 * permission. This software is supplied as is without expressed or
13 * implied warranties of any kind.
14 *
15 * Research Systems Unix Group
16 * The University of Michigan
17 * c/o Mike Clark
18 * 535 W. William Street
19 * Ann Arbor, Michigan
20 * +1-313-763-0525
22 */
23
24#ifndef ATALK_DIRECTORY_H
25#define ATALK_DIRECTORY_H 1
26
27#include <arpa/inet.h>
28#include <dirent.h>
29#include <stdint.h>
30#include <sys/types.h>
31
32#include <bstrlib.h>
33
34#include <atalk/cnid.h>
35#include <atalk/queue.h>
36#include <atalk/unicode.h>
37
38/* setgid directories */
39#ifndef DIRBITS
40# define DIRBITS S_ISGID
41#endif /* DIRBITS */
42
43/* reserved directory id's */
44#define DIRDID_ROOT_PARENT htonl(1)
45#define DIRDID_ROOT htonl(2)
46
47/* struct dir.d_flags */
48#define DIRF_FSMASK (3<<0)
49#define DIRF_NOFS (0<<0)
50#define DIRF_UFS (1<<1)
51#define DIRF_ISFILE (1<<3)
52#define DIRF_OFFCNT (1<<4)
53#define DIRF_CNID (1<<5)
54#define DIRF_UNVALIDATED (1<<6)
55
56struct dir {
57 bstring d_fullpath;
58 /* be careful here! if d_m_name == d_u_name, d_u_name
59 * will just point to the same storage as d_m_name !! */
60 bstring d_m_name;
61 bstring d_u_name;
64 time_t d_ctime;
66 int d_flags;
69 uint32_t d_offcnt;
70 uint16_t d_vid;
72 uint32_t d_rights_cache;
74 /* Stuff used in the dircache */
75 time_t dcache_ctime;
77 ino_t dcache_ino;
79};
80
81struct path {
82 int m_type;
83 char *m_name;
84 char *u_name;
86 struct dir *d_dir;
89 struct stat st;
90};
91
92static inline int path_isadir(struct path *o_path)
93{
94 return o_path->d_dir != NULL;
95#if 0
96 return o_path->m_name == '\0' || /* we are in a it */
97 !o_path->st_valid || /* in cache but we can't chdir in it */
98 /* not in cache and can't chdir */
99 (!o_path->st_errno && S_ISDIR(o_path->st.st_mode));
100#endif
101}
102
103/* directory.c */
104extern struct dir rootParent;
105
106#endif /* ATALK_DIRECTORY_H */
uint32_t cnid_t
Definition adouble.h:156
struct dir rootParent
Definition directory.c:61
static int path_isadir(struct path *o_path)
Definition include/atalk/directory.h:92
struct qnode qnode_t
Definition include/atalk/directory.h:56
time_t d_ctime
Definition include/atalk/directory.h:64
uint16_t d_vid
Definition include/atalk/directory.h:70
time_t dcache_ctime
Definition include/atalk/directory.h:75
ino_t dcache_ino
Definition include/atalk/directory.h:77
cnid_t d_did
Definition include/atalk/directory.h:68
qnode_t * qidx_node
Definition include/atalk/directory.h:63
bstring d_fullpath
Definition include/atalk/directory.h:57
ucs2_t * d_m_name_ucs2
Definition include/atalk/directory.h:62
uint32_t d_rights_cache
Definition include/atalk/directory.h:72
int d_flags
Definition include/atalk/directory.h:66
uint32_t d_offcnt
Definition include/atalk/directory.h:69
bstring d_m_name
Definition include/atalk/directory.h:60
bstring d_u_name
Definition include/atalk/directory.h:61
cnid_t d_pdid
Definition include/atalk/directory.h:67
Definition include/atalk/directory.h:81
char * u_name
Definition include/atalk/directory.h:84
int st_valid
Definition include/atalk/directory.h:87
struct stat st
Definition include/atalk/directory.h:89
int m_type
Definition include/atalk/directory.h:82
int st_errno
Definition include/atalk/directory.h:88
cnid_t id
Definition include/atalk/directory.h:85
struct dir * d_dir
Definition include/atalk/directory.h:86
char * m_name
Definition include/atalk/directory.h:83
#define ucs2_t
Definition unicode.h:8