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 | uint32_t tid;
|
---|
43 | struct server_id pid;
|
---|
44 | };
|
---|
45 |
|
---|
46 | struct files_struct;
|
---|
47 |
|
---|
48 | #include "lib/file_id.h"
|
---|
49 |
|
---|
50 | struct byte_range_lock;
|
---|
51 |
|
---|
52 | /* Internal structure in brlock.tdb.
|
---|
53 | The data in brlock records is an unsorted linear array of these
|
---|
54 | records. It is unnecessary to store the count as tdb provides the
|
---|
55 | size of the record */
|
---|
56 |
|
---|
57 | struct lock_struct {
|
---|
58 | struct lock_context context;
|
---|
59 | br_off start;
|
---|
60 | br_off size;
|
---|
61 | uint64_t fnum;
|
---|
62 | enum brl_type lock_type;
|
---|
63 | enum brl_flavour lock_flav;
|
---|
64 | };
|
---|
65 |
|
---|
66 | /****************************************************************************
|
---|
67 | This is the structure to queue to implement blocking locks.
|
---|
68 | *****************************************************************************/
|
---|
69 |
|
---|
70 | struct blocking_lock_record {
|
---|
71 | struct blocking_lock_record *next;
|
---|
72 | struct blocking_lock_record *prev;
|
---|
73 | struct files_struct *fsp;
|
---|
74 | struct timeval expire_time;
|
---|
75 | int lock_num;
|
---|
76 | uint64_t offset;
|
---|
77 | uint64_t count;
|
---|
78 | uint64_t smblctx;
|
---|
79 | uint64_t blocking_smblctx; /* Context that blocks us. */
|
---|
80 | enum brl_flavour lock_flav;
|
---|
81 | enum brl_type lock_type;
|
---|
82 | struct smb_request *req;
|
---|
83 | void *blr_private; /* Implementation specific. */
|
---|
84 | };
|
---|
85 |
|
---|
86 | struct smbd_lock_element {
|
---|
87 | uint64_t smblctx;
|
---|
88 | enum brl_type brltype;
|
---|
89 | uint64_t offset;
|
---|
90 | uint64_t count;
|
---|
91 | };
|
---|
92 |
|
---|
93 | struct share_mode_lock {
|
---|
94 | struct share_mode_data *data;
|
---|
95 | };
|
---|
96 |
|
---|
97 | #endif /* _LOCKING_H_ */
|
---|