ac4990b284523d6727ae2f1e45c050017ab35f3f
[openafs.git] / src / WINNT / afsd / cm_scache.h
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 #ifndef __CM_SCACHE_H_ENV__
11 #define __CM_SCACHE_H_ENV__ 1
12
13 #define MOUNTPOINTLEN   1024    /* max path length for symlink; same as AFSPATHMAX */
14
15 typedef struct cm_fid {
16     afs_uint32 cell;
17     afs_uint32 volume;
18     afs_uint32 vnode;
19     afs_uint32 unique;
20     afs_uint32 hash;
21 } cm_fid_t;
22
23
24 /* Key used for byte range locking.  Each unique key identifies a
25    unique client per cm_scache_t for the purpose of locking. */
26 typedef afs_uint64 cm_key_t;
27
28 typedef struct cm_range {
29     afs_int64 offset;
30     afs_int64 length;
31 } cm_range_t;
32
33 /* forward dcls */
34 struct cm_scache;
35 typedef struct cm_scache cm_scache_t;
36
37 typedef struct cm_file_lock {
38     osi_queue_t q;              /* list of all locks [protected by
39                                    cm_scacheLock] */
40     osi_queue_t fileq;          /* per-file list of locks [protected
41                                    by scp->rw]*/
42     
43     cm_user_t *userp;           /* The user to which this lock belongs
44                                    to [immutable; held] */
45     cm_scache_t *scp;           /* The scache to which this lock
46                                    applies to [immutable; held] */
47 #ifdef DEBUG
48     cm_fid_t   fid;
49 #endif
50
51     cm_range_t range;           /* Range for the lock [immutable] */
52     cm_key_t key;               /* Key for the lock [immutable] */
53     unsigned char lockType;     /* LockRead or LockWrite [immutable] */
54     unsigned char flags;        /* combination of CM_FILELOCK_FLAG__*
55                                  * [protected by cm_scacheLock] */
56     time_t lastUpdate;          /* time of last assertion with
57                                  * server. [protected by
58                                  * cm_scacheLock] */
59 } cm_file_lock_t;
60
61 #define CM_FILELOCK_FLAG_DELETED         0x01
62 #define CM_FILELOCK_FLAG_LOST            0x02
63
64 /* the following are mutually exclusive */
65 #define CM_FILELOCK_FLAG_WAITLOCK        0x04
66 #define CM_FILELOCK_FLAG_WAITUNLOCK      0x0C
67
68 /* the following is used to indicate that there are no server side
69    locks associated with this lock.  This is true for locks obtained
70    against files in RO volumes as well as files residing on servers
71    that disable client side byte range locking. */
72 #define CM_FILELOCK_FLAG_CLIENTONLY      0x10
73
74 #define CM_FLSHARE_OFFSET_HIGH           0x01000000
75 #define CM_FLSHARE_OFFSET_LOW            0x00000000
76 #define CM_FLSHARE_LENGTH_HIGH           0x00000000
77 #define CM_FLSHARE_LENGTH_LOW            0x00000001
78
79 typedef struct cm_prefetch {            /* last region scanned for prefetching */
80         osi_hyper_t base;               /* start of region */
81         osi_hyper_t end;                /* first char past region */
82 } cm_prefetch_t;
83
84 #define CM_SCACHE_MAGIC ('S' | 'C'<<8 | 'A'<<16 | 'C'<<24)
85
86 typedef struct cm_scache {
87     osi_queue_t q;                      /* lru queue; cm_scacheLock */
88     afs_uint32      magic;
89     struct cm_scache *nextp;            /* next in hash; cm_scacheLock */
90     struct cm_scache *allNextp;         /* next in all scache list; cm_scacheLock */
91     cm_fid_t fid;
92     afs_uint32 flags;                   /* flags; locked by rw */
93
94     /* synchronization stuff */
95     osi_rwlock_t rw;                    /* rwlock for this structure */
96     osi_rwlock_t bufCreateLock;         /* read-locked during buffer creation;
97                                          * write-locked to prevent buffers from
98                                          * being created during a truncate op, etc.
99                                          */
100     afs_int32 refCount;                 /* reference count; cm_scacheLock */
101     osi_queueData_t *bufReadsp;         /* queue of buffers being read */
102     osi_queueData_t *bufWritesp;        /* queue of buffers being written */
103
104     /* parent info for ACLs */
105     afs_uint32 parentVnode;             /* parent vnode for ACL callbacks */
106     afs_uint32 parentUnique;            /* for ACL callbacks */
107
108     /* local modification stat */
109     afs_uint32 mask;                    /* for clientModTime, length and
110                                          * truncPos */
111
112     /* file status */
113     afs_uint32 fileType;                /* file type */
114     time_t clientModTime;               /* mtime */
115     time_t serverModTime;               /* at server, for concurrent call
116                                          * comparisons */
117     osi_hyper_t length;                 /* file length */
118     cm_prefetch_t prefetch;             /* prefetch info structure */
119     afs_uint32 unixModeBits;            /* unix protection mode bits */
120     afs_uint32 linkCount;               /* link count */
121     afs_uint64 dataVersion;             /* data version */
122     afs_uint64 bufDataVersionLow;       /* range of valid cm_buf_t dataVersions */
123     afs_uint32 owner;                   /* file owner */
124     afs_uint32 group;                   /* file owning group */
125     cm_user_t *creator;                 /* user, if new file */
126
127     /* pseudo file status */
128     osi_hyper_t serverLength;           /* length known to server */
129
130     /* aux file status */
131     osi_hyper_t truncPos;               /* file size to truncate to before
132                                          * storing data */
133
134     /* symlink and mount point info */
135     char mountPointStringp[MOUNTPOINTLEN];      /* the string stored in a mount point;
136                                                  * first char is type, then vol name.
137                                          * If this is a normal symlink, we store
138                                          * the link contents here.
139                                          */
140     cm_fid_t  mountRootFid;             /* mounted on root */
141     time_t    mountRootGen;             /* time to update mountRootFidp? */
142     cm_fid_t  dotdotFid;                /* parent of volume root */
143
144     /* callback info */
145     struct cm_server *cbServerp;        /* server granting callback */
146     time_t cbExpires;                   /* time callback expires */
147
148     /* access cache */
149     long anyAccess;                     /* anonymous user's access */
150     struct cm_aclent *randomACLp;       /* access cache entries */
151
152     /* file locks */
153     afs_int32    serverLock;    /* current lock we have acquired on
154                                  * this file.  One of (-1), LockRead
155                                  * or LockWrite. [protected by
156                                  * scp->rw].  In the future, this
157                                  * should be replaced by a queue of
158                                  * cm_server_lock_t objects which keep
159                                  * track of lock type, the user for
160                                  * whom the lock was obtained, the
161                                  * dataVersion at the time the lock
162                                  * was asserted last, lastRefreshCycle
163                                  * and lateUpdateTime.
164                                  */
165     unsigned long lastRefreshCycle; /* protected with cm_scacheLock
166                                      * for all scaches. */
167     afs_uint64  lockDataVersion; /* dataVersion of the scp at the time
168                                    the server lock for the scp was
169                                    asserted for this lock the last
170                                    time. */
171     osi_queue_t *fileLocksH;    /* queue of locks (head) */
172     osi_queue_t *fileLocksT;    /* queue of locks (tail) */
173
174     afs_uint32   sharedLocks;   /* number of shared locks on
175                                  * ::fileLocks.  This count does not
176                                  * include locks which have
177                                  * CM_FILELOCK_FLAG_CLIENTONLY set. */
178
179     afs_uint32   exclusiveLocks; /* number of exclusive locks on
180                                   * ::fileLocks.  This count does not
181                                   * include locks which have
182                                   * CM_FILELOCK_FLAG_CLIENTONLY set.
183                                   */
184
185     afs_uint32   clientLocks;   /* number of locks on ::fileLocks that
186                                    have CM_FILELOCK_FLAG_CLIENTONLY
187                                    set. */
188         
189     /* bulk stat progress */
190     osi_hyper_t bulkStatProgress;       /* track bulk stats of large dirs */
191
192 #ifdef USE_BPLUS
193     /* directory B+ tree */             /* only allocated if is directory */
194     osi_rwlock_t dirlock;               /* controls access to dirBplus */
195     afs_uint64   dirDataVersion;        /* data version represented by dirBplus */
196     struct tree *dirBplus;              /* dirBplus */
197 #endif
198
199     /* open state */
200     afs_uint16 openReads;               /* open for reading */
201     afs_uint16 openWrites;              /* open for writing */
202     afs_uint16 openShares;              /* open for read excl */
203     afs_uint16 openExcls;               /* open for exclusives */
204
205     /* syncop state */
206     afs_uint32 waitCount;           /* number of threads waiting */
207     afs_uint32 waitRequests;        /* num of thread wait requests */
208     osi_queue_t * waitQueueH;       /* Queue of waiting threads.
209                                        Holds queue of
210                                        cm_scache_waiter_t
211                                        objects. Protected by
212                                        cm_cacheLock. */
213     osi_queue_t * waitQueueT;       /* locked by cm_scacheLock */
214 } cm_scache_t;
215
216 /* mask field - tell what has been modified */
217 #define CM_SCACHEMASK_CLIENTMODTIME     1       /* client mod time */
218 #define CM_SCACHEMASK_LENGTH            2       /* length */
219 #define CM_SCACHEMASK_TRUNCPOS          4       /* truncation position */
220
221 /* fileType values */
222 #define CM_SCACHETYPE_FILE              1       /* a file */
223 #define CM_SCACHETYPE_DIRECTORY         2       /* a dir */
224 #define CM_SCACHETYPE_SYMLINK           3       /* a symbolic link */
225 #define CM_SCACHETYPE_MOUNTPOINT        4       /* a mount point */
226 #define CM_SCACHETYPE_DFSLINK           5       /* a Microsoft Dfs link */
227 #define CM_SCACHETYPE_INVALID           99      /* an invalid link */
228
229 /* flag bits */
230 #define CM_SCACHEFLAG_STATD             0x01    /* status info is valid */
231 #define CM_SCACHEFLAG_DELETED           0x02    /* file has been deleted */
232 #define CM_SCACHEFLAG_CALLBACK          0x04    /* have a valid callback */
233 #define CM_SCACHEFLAG_STORING           0x08    /* status being stored back */
234 #define CM_SCACHEFLAG_FETCHING          0x10    /* status being fetched */
235 #define CM_SCACHEFLAG_SIZESTORING       0x20    /* status being stored that
236                                                  * changes the data; typically,
237                                                  * this is a truncate op. */
238 #define CM_SCACHEFLAG_INHASH            0x40    /* in the hash table */
239 #define CM_SCACHEFLAG_BULKSTATTING      0x80    /* doing a bulk stat */
240 #define CM_SCACHEFLAG_WAITING           0x200   /* waiting for fetch/store
241                                                  * state to change */
242 #define CM_SCACHEFLAG_PURERO            0x400   /* read-only (not even backup);
243                                                  * for mount point eval */
244 #define CM_SCACHEFLAG_RO                0x800   /* read-only
245                                                  * (can't do write ops) */
246 #define CM_SCACHEFLAG_GETCALLBACK       0x1000  /* we're getting a callback */
247 #define CM_SCACHEFLAG_DATASTORING       0x2000  /* data being stored */
248 #define CM_SCACHEFLAG_PREFETCHING       0x4000  /* somebody is prefetching */
249 #define CM_SCACHEFLAG_OVERQUOTA         0x8000  /* over quota */
250 #define CM_SCACHEFLAG_OUTOFSPACE        0x10000 /* out of space */
251 #define CM_SCACHEFLAG_ASYNCSTORING      0x20000 /* scheduled to store back */
252 #define CM_SCACHEFLAG_LOCKING           0x40000 /* setting/clearing file lock */
253 #define CM_SCACHEFLAG_WATCHED           0x80000 /* directory being watched */
254 #define CM_SCACHEFLAG_WATCHEDSUBTREE    0x100000 /* dir subtree being watched */
255 #define CM_SCACHEFLAG_ANYWATCH \
256                         (CM_SCACHEFLAG_WATCHED | CM_SCACHEFLAG_WATCHEDSUBTREE)
257
258 #define CM_SCACHEFLAG_EACCESS           0x200000 /* Bulk Stat returned EACCES */
259 #define CM_SCACHEFLAG_SMB_FID           0x400000
260
261 /* sync flags for calls to the server.  The CM_SCACHEFLAG_FETCHING,
262  * CM_SCACHEFLAG_STORING and CM_SCACHEFLAG_SIZESTORING flags correspond to the
263  * below, except for FETCHDATA and STOREDATA, which correspond to non-null
264  * buffers in bufReadsp and bufWritesp.
265  * These flags correspond to individual RPCs that we may be making, and at most
266  * one can be set in any one call to SyncOp.
267  */
268 #define CM_SCACHESYNC_FETCHSTATUS           0x01        /* fetching status info */
269 #define CM_SCACHESYNC_STORESTATUS           0x02        /* storing status info */
270 #define CM_SCACHESYNC_FETCHDATA             0x04        /* fetch data */
271 #define CM_SCACHESYNC_STOREDATA             0x08        /* store data */
272 #define CM_SCACHESYNC_STORESIZE         0x10    /* store new file size */
273 #define CM_SCACHESYNC_GETCALLBACK       0x20    /* fetching a callback */
274 #define CM_SCACHESYNC_STOREDATA_EXCL    0x40    /* store data */
275 #define CM_SCACHESYNC_ASYNCSTORE        0x80    /* schedule data store */
276 #define CM_SCACHESYNC_LOCK              0x100   /* set/clear file lock */
277
278 /* sync flags for calls within the client; there are no corresponding flags
279  * in the scache entry, because we hold the scache entry locked during the
280  * operations below.
281  */
282 #define CM_SCACHESYNC_GETSTATUS         0x1000  /* read the status */
283 #define CM_SCACHESYNC_SETSTATUS         0x2000  /* e.g. utimes */
284 #define CM_SCACHESYNC_READ              0x4000  /* read data from a chunk */
285 #define CM_SCACHESYNC_WRITE             0x8000  /* write data to a chunk */
286 #define CM_SCACHESYNC_SETSIZE           0x10000 /* shrink the size of a file,
287                                                  * e.g. truncate */
288 #define CM_SCACHESYNC_NEEDCALLBACK      0x20000 /* need a callback on the file */
289 #define CM_SCACHESYNC_CHECKRIGHTS       0x40000 /* check that user has desired
290                                                  * access rights */
291 #define CM_SCACHESYNC_BUFLOCKED         0x80000 /* the buffer is locked */
292 #define CM_SCACHESYNC_NOWAIT            0x100000/* don't wait for the state,
293                                                  * just fail */
294 #define CM_SCACHESYNC_FORCECB           0x200000/* when calling cm_GetCallback()
295                                                  * set the force flag */
296
297 /* flags for cm_RecycleSCache   */
298 #define CM_SCACHE_RECYCLEFLAG_DESTROY_BUFFERS   0x1
299
300 /* flags for cm_MergeStatus */
301 #define CM_MERGEFLAG_FORCE              1       /* check mtime before merging;
302                                                  * used to see if we're merging
303                                                  * in old info.
304                                                  */
305 #define CM_MERGEFLAG_STOREDATA          2       /* Merge due to storedata op */
306 #define CM_MERGEFLAG_DIROP              4       /* Merge due to directory op */ 
307
308 /* hash define.  Must not include the cell, since the callback revocation code
309  * doesn't necessarily know the cell in the case of a multihomed server
310  * contacting us from a mystery address.
311  */
312 #define CM_SCACHE_HASH(fidp)    (((unsigned long)       \
313                                    ((fidp)->volume +    \
314                                     (fidp)->vnode +     \
315                                     (fidp)->unique))    \
316                                         % cm_data.scacheHashTableSize)
317
318 #include "cm_conn.h"
319 #include "cm_buf.h"
320
321 typedef struct cm_scache_waiter {
322     osi_queue_t q;
323     afs_int32   threadId;
324
325     cm_scache_t *scp;
326     afs_int32   flags;
327     cm_buf_t    *bufp;
328 } cm_scache_waiter_t;
329
330 extern void cm_InitSCache(int, long);
331
332 #ifdef DEBUG_REFCOUNT
333 extern long cm_GetSCacheDbg(cm_fid_t *, cm_scache_t **, struct cm_user *,
334         struct cm_req *, char *, long);
335
336 #define cm_GetSCache(a,b,c,d)  cm_GetSCacheDbg(a,b,c,d,__FILE__,__LINE__)
337 #else
338 extern long cm_GetSCache(cm_fid_t *, cm_scache_t **, struct cm_user *,
339         struct cm_req *);
340 #endif
341
342 extern cm_scache_t *cm_GetNewSCache(void);
343
344 extern __inline int cm_FidCmp(cm_fid_t *, cm_fid_t *);
345
346 extern void cm_SetFid(cm_fid_t *, afs_uint32 cell, afs_uint32 volume, afs_uint32 vnode, afs_uint32 unique);
347
348 extern long cm_SyncOp(cm_scache_t *, struct cm_buf *, struct cm_user *,
349         struct cm_req *, afs_uint32, afs_uint32);
350
351 extern void cm_SyncOpDone(cm_scache_t *, struct cm_buf *, afs_uint32);
352
353 extern void cm_MergeStatus(cm_scache_t * dscp, cm_scache_t * scp, 
354                            struct AFSFetchStatus * statusp, 
355                            struct AFSVolSync * volsyncp,
356                            struct cm_user *userp, 
357                            afs_uint32 flags);
358
359 extern void cm_AFSFidFromFid(struct AFSFid *, cm_fid_t *);
360
361 #ifdef DEBUG_REFCOUNT
362 extern void cm_HoldSCacheNoLockDbg(cm_scache_t *, char *, long);
363
364 extern void cm_HoldSCacheDbg(cm_scache_t *, char *, long);
365
366 extern void cm_ReleaseSCacheNoLockDbg(cm_scache_t *, char *, long);
367
368 extern void cm_ReleaseSCacheDbg(cm_scache_t *, char *, long);
369
370 #define cm_HoldSCacheNoLock(scp)    cm_HoldSCacheNoLockDbg(scp, __FILE__, __LINE__)
371 #define cm_HoldSCache(scp)          cm_HoldSCacheDbg(scp, __FILE__, __LINE__)
372 #define cm_ReleaseSCacheNoLock(scp) cm_ReleaseSCacheNoLockDbg(scp, __FILE__, __LINE__)
373 #define cm_ReleaseSCache(scp)       cm_ReleaseSCacheDbg(scp, __FILE__, __LINE__)
374 #else
375 extern void cm_HoldSCacheNoLock(cm_scache_t *);
376
377 extern void cm_HoldSCache(cm_scache_t *);
378
379 extern void cm_ReleaseSCacheNoLock(cm_scache_t *);
380
381 extern void cm_ReleaseSCache(cm_scache_t *);
382 #endif
383 extern cm_scache_t *cm_FindSCache(cm_fid_t *fidp);
384
385 extern cm_scache_t *cm_FindSCacheParent(cm_scache_t *);
386
387 extern osi_rwlock_t cm_scacheLock;
388
389 extern osi_queue_t *cm_allFileLocks;
390
391 extern osi_queue_t *cm_freeFileLocks;
392
393 extern unsigned long cm_lockRefreshCycle;
394
395 extern void cm_DiscardSCache(cm_scache_t *scp);
396
397 extern int cm_FindFileType(cm_fid_t *fidp);
398
399 extern long cm_ValidateSCache(void);
400
401 extern long cm_ShutdownSCache(void);
402
403 extern void cm_SuspendSCache(void);
404
405 extern long cm_RecycleSCache(cm_scache_t *scp, afs_int32 flags);
406
407 extern void cm_RemoveSCacheFromHashTable(cm_scache_t *scp);
408
409 extern void cm_AdjustScacheLRU(cm_scache_t *scp);
410 #endif /*  __CM_SCACHE_H_ENV__ */