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 3 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, see <http://www.gnu.org/licenses/>.
|
---|
19 | */
|
---|
20 |
|
---|
21 | #ifndef _LOCKING_H
|
---|
22 | #define _LOCKING_H
|
---|
23 |
|
---|
24 | /* passed to br lock code - the UNLOCK_LOCK should never be stored into the tdb
|
---|
25 | and is used in calculating POSIX unlock ranges only. We differentiate between
|
---|
26 | PENDING read and write locks to allow posix lock downgrades to trigger a lock
|
---|
27 | re-evaluation. */
|
---|
28 |
|
---|
29 | enum brl_type {READ_LOCK, WRITE_LOCK, PENDING_READ_LOCK, PENDING_WRITE_LOCK, UNLOCK_LOCK};
|
---|
30 | enum brl_flavour {WINDOWS_LOCK = 0, POSIX_LOCK = 1};
|
---|
31 |
|
---|
32 | #define IS_PENDING_LOCK(type) ((type) == PENDING_READ_LOCK || (type) == PENDING_WRITE_LOCK)
|
---|
33 |
|
---|
34 | #include "librpc/gen_ndr/server_id.h"
|
---|
35 |
|
---|
36 | /* This contains elements that differentiate locks. The smbpid is a
|
---|
37 | client supplied pid, and is essentially the locking context for
|
---|
38 | this client */
|
---|
39 |
|
---|
40 | struct lock_context {
|
---|
41 | uint64_t smblctx;
|
---|
42 | uint16 tid;
|
---|
43 | struct server_id pid;
|
---|
44 | };
|
---|
45 |
|
---|
46 | struct files_struct;
|
---|
47 |
|
---|
48 | #include "../librpc/gen_ndr/file_id.h"
|
---|
49 |
|
---|
50 | struct byte_range_lock {
|
---|
51 | struct files_struct *fsp;
|
---|
52 | unsigned int num_locks;
|
---|
53 | bool modified;
|
---|
54 | bool read_only;
|
---|
55 | struct file_id key;
|
---|
56 | struct lock_struct *lock_data;
|
---|
57 | struct db_record *record;
|
---|
58 | };
|
---|
59 |
|
---|
60 | /* Internal structure in brlock.tdb.
|
---|
61 | The data in brlock records is an unsorted linear array of these
|
---|
62 | records. It is unnecessary to store the count as tdb provides the
|
---|
63 | size of the record */
|
---|
64 |
|
---|
65 | struct lock_struct {
|
---|
66 | struct lock_context context;
|
---|
67 | br_off start;
|
---|
68 | br_off size;
|
---|
69 | uint16 fnum;
|
---|
70 | enum brl_type lock_type;
|
---|
71 | enum brl_flavour lock_flav;
|
---|
72 | };
|
---|
73 |
|
---|
74 | /****************************************************************************
|
---|
75 | This is the structure to queue to implement blocking locks.
|
---|
76 | *****************************************************************************/
|
---|
77 |
|
---|
78 | struct blocking_lock_record {
|
---|
79 | struct blocking_lock_record *next;
|
---|
80 | struct blocking_lock_record *prev;
|
---|
81 | struct files_struct *fsp;
|
---|
82 | struct timeval expire_time;
|
---|
83 | int lock_num;
|
---|
84 | uint64_t offset;
|
---|
85 | uint64_t count;
|
---|
86 | uint64_t smblctx;
|
---|
87 | uint64_t blocking_smblctx; /* Context that blocks us. */
|
---|
88 | enum brl_flavour lock_flav;
|
---|
89 | enum brl_type lock_type;
|
---|
90 | struct smb_request *req;
|
---|
91 | void *blr_private; /* Implementation specific. */
|
---|
92 | };
|
---|
93 |
|
---|
94 | struct smbd_lock_element {
|
---|
95 | uint64_t smblctx;
|
---|
96 | enum brl_type brltype;
|
---|
97 | uint64_t offset;
|
---|
98 | uint64_t count;
|
---|
99 | };
|
---|
100 |
|
---|
101 | #endif /* _LOCKING_H_ */
|
---|