r17098: Samba3 now cleanly passes Samba4 RAW-LOCK torture
[gd/samba/.git] / source / include / locking.h
1 /* 
2    Unix SMB/CIFS implementation.
3    SMB parameters and setup, plus a whole lot more.
4    
5    Copyright (C) Jeremy Allison   2006
6    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 #ifndef _LOCKING_H
23 #define _LOCKING_H
24
25 /* passed to br lock code - the UNLOCK_LOCK should never be stored into the tdb
26    and is used in calculating POSIX unlock ranges only. */
27
28 enum brl_type {READ_LOCK, WRITE_LOCK, PENDING_LOCK, UNLOCK_LOCK};
29 enum brl_flavour {WINDOWS_LOCK = 0, POSIX_LOCK = 1};
30
31 /* This contains elements that differentiate locks. The smbpid is a
32    client supplied pid, and is essentially the locking context for
33    this client */
34
35 struct lock_context {
36         uint32 smbpid;
37         uint16 tid;
38         struct process_id pid;
39 };
40
41 /* The key used in the brlock database. */
42
43 struct lock_key {
44         SMB_DEV_T device;
45         SMB_INO_T inode;
46 };
47
48 struct files_struct;
49
50 struct byte_range_lock {
51         struct files_struct *fsp;
52         unsigned int num_locks;
53         BOOL modified;
54         struct lock_key key;
55         void *lock_data;
56 };
57
58 #define BRLOCK_FN_CAST() \
59         void (*)(SMB_DEV_T dev, SMB_INO_T ino, struct process_id pid, \
60                                  enum brl_type lock_type, \
61                                  enum brl_flavour lock_flav, \
62                                  br_off start, br_off size)
63
64 #define BRLOCK_FN(fn) \
65         void (*fn)(SMB_DEV_T dev, SMB_INO_T ino, struct process_id pid, \
66                                  enum brl_type lock_type, \
67                                  enum brl_flavour lock_flav, \
68                                  br_off start, br_off size)
69
70 #define LOCKING_FN_CAST() \
71         void (*)(struct share_mode_entry *, const char *, const char *)
72
73 #define LOCKING_FN(fn) \
74         void (*fn)(struct share_mode_entry *, const char *, const char *)
75
76 /* Internal structure in brlock.tdb. 
77    The data in brlock records is an unsorted linear array of these
78    records.  It is unnecessary to store the count as tdb provides the
79    size of the record */
80
81 struct lock_struct {
82         struct lock_context context;
83         br_off start;
84         br_off size;
85         uint16 fnum;
86         enum brl_type lock_type;
87         enum brl_flavour lock_flav;
88 };
89
90 #endif /* _LOCKING_H_ */