2 Samba share mode database library external interface library.
3 Used by non-Samba products needing access to the Samba share mode db.
5 Copyright (C) Jeremy Allison 2005 - 2006
7 sharemodes_procid functions (C) Copyright (C) Volker Lendecke 2005
9 ** NOTE! The following LGPL license applies to this module only.
10 ** This does NOT imply that all of Samba is released
13 This library is free software; you can redistribute it and/or
14 modify it under the terms of the GNU Lesser General Public
15 License as published by the Free Software Foundation; either
16 version 3 of the License, or (at your option) any later version.
18 This library is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 Lesser General Public License for more details.
23 You should have received a copy of the GNU Lesser General Public
24 License along with this library; if not, see <http://www.gnu.org/licenses/>.
28 #include "smb_share_modes.h"
30 /* Database context handle. */
35 /* Remove the paranoid malloc checker. */
40 int smb_create_share_mode_entry_ex(struct smbdb_ctx
*db_ctx
, uint64_t dev
,
41 uint64_t ino
, uint64_t extid
,
42 const struct smb_share_mode_entry
*new_entry
,
43 const char *sharepath
, const char *filename
);
45 static bool sharemodes_procid_equal(const struct server_id
*p1
, const struct server_id
*p2
)
47 return (p1
->pid
== p2
->pid
);
50 static pid_t
sharemodes_procid_to_pid(const struct server_id
*proc
)
56 * open/close sharemode database.
59 struct smbdb_ctx
*smb_share_mode_db_open(const char *db_path
)
61 struct smbdb_ctx
*smb_db
= (struct smbdb_ctx
*)malloc(sizeof(struct smbdb_ctx
));
67 memset(smb_db
, '\0', sizeof(struct smbdb_ctx
));
69 smb_db
->smb_tdb
= tdb_open(db_path
,
70 0, TDB_DEFAULT
|TDB_CLEAR_IF_FIRST
,
74 if (!smb_db
->smb_tdb
) {
79 /* Should check that this is the correct version.... */
83 /* key and data records in the tdb locking database */
90 int smb_share_mode_db_close(struct smbdb_ctx
*db_ctx
)
92 int ret
= tdb_close(db_ctx
->smb_tdb
);
97 static TDB_DATA
get_locking_key(struct locking_key
*lk
, uint64_t dev
,
98 uint64_t ino
, uint64_t extid
)
102 memset(lk
, '\0', sizeof(*lk
));
103 lk
->dev
= (SMB_DEV_T
)dev
;
104 lk
->inode
= (SMB_INO_T
)ino
;
106 ld
.dptr
= (uint8
*)lk
;
107 ld
.dsize
= sizeof(*lk
);
112 * lock/unlock entry in sharemode database.
115 int smb_lock_share_mode_entry(struct smbdb_ctx
*db_ctx
,
120 struct locking_key lk
;
121 return tdb_chainlock(db_ctx
->smb_tdb
, get_locking_key(&lk
, dev
, ino
,
125 int smb_unlock_share_mode_entry(struct smbdb_ctx
*db_ctx
,
130 struct locking_key lk
;
131 return tdb_chainunlock(db_ctx
->smb_tdb
,
132 get_locking_key(&lk
, dev
, ino
, extid
));
136 * Check if an external smb_share_mode_entry and an internal share_mode entry match.
139 static int share_mode_entry_equal(const struct smb_share_mode_entry
*e_entry
,
140 const struct share_mode_entry
*entry
)
142 return (sharemodes_procid_equal(&e_entry
->pid
, &entry
->pid
) &&
143 e_entry
->file_id
== (uint32_t)entry
->share_file_id
&&
144 e_entry
->open_time
.tv_sec
== entry
->time
.tv_sec
&&
145 e_entry
->open_time
.tv_usec
== entry
->time
.tv_usec
&&
146 e_entry
->share_access
== (uint32_t)entry
->share_access
&&
147 e_entry
->access_mask
== (uint32_t)entry
->access_mask
&&
148 e_entry
->dev
== entry
->id
.devid
&&
149 e_entry
->ino
== entry
->id
.inode
&&
150 e_entry
->extid
== entry
->id
.extid
);
154 * Create an internal Samba share_mode entry from an external smb_share_mode_entry.
157 static void create_share_mode_entry(struct share_mode_entry
*out
,
158 const struct smb_share_mode_entry
*in
)
160 memset(out
, '\0', sizeof(struct share_mode_entry
));
163 out
->share_file_id
= (unsigned long)in
->file_id
;
164 out
->time
.tv_sec
= in
->open_time
.tv_sec
;
165 out
->time
.tv_usec
= in
->open_time
.tv_usec
;
166 out
->share_access
= in
->share_access
;
167 out
->access_mask
= in
->access_mask
;
168 out
->id
.devid
= in
->dev
;
169 out
->id
.inode
= in
->ino
;
170 out
->id
.extid
= in
->extid
;
171 out
->uid
= (uint32
)geteuid();
176 * Return the current share mode list for an open file.
177 * This uses similar (but simplified) logic to locking/locking.c
180 int smb_get_share_mode_entries(struct smbdb_ctx
*db_ctx
,
184 struct smb_share_mode_entry
**pp_list
,
185 unsigned char *p_delete_on_close
)
187 struct locking_key lk
;
189 struct smb_share_mode_entry
*list
= NULL
;
190 int num_share_modes
= 0;
191 struct locking_data
*ld
= NULL
; /* internal samba db state. */
192 struct share_mode_entry
*shares
= NULL
;
197 *p_delete_on_close
= 0;
199 db_data
= tdb_fetch(db_ctx
->smb_tdb
, get_locking_key(&lk
, dev
, ino
,
205 ld
= (struct locking_data
*)db_data
.dptr
;
206 num_share_modes
= ld
->u
.s
.num_share_mode_entries
;
208 if (!num_share_modes
) {
213 list
= (struct smb_share_mode_entry
*)malloc(sizeof(struct smb_share_mode_entry
)*num_share_modes
);
219 memset(list
, '\0', num_share_modes
* sizeof(struct smb_share_mode_entry
));
221 shares
= (struct share_mode_entry
*)(db_data
.dptr
+ sizeof(struct locking_data
));
224 for (i
= 0; i
< num_share_modes
; i
++) {
225 struct share_mode_entry
*share
= &shares
[i
];
226 struct smb_share_mode_entry
*sme
= &list
[list_num
];
227 struct server_id pid
= share
->pid
;
229 /* Check this process really exists. */
230 if (kill(sharemodes_procid_to_pid(&pid
), 0) == -1 && (errno
== ESRCH
)) {
231 continue; /* No longer exists. */
234 /* Ignore deferred open entries. */
235 if (share
->op_type
== DEFERRED_OPEN_ENTRY
) {
239 /* Copy into the external list. */
240 sme
->dev
= share
->id
.devid
;
241 sme
->ino
= share
->id
.inode
;
242 sme
->extid
= share
->id
.extid
;
243 sme
->share_access
= (uint32_t)share
->share_access
;
244 sme
->access_mask
= (uint32_t)share
->access_mask
;
245 sme
->open_time
.tv_sec
= share
->time
.tv_sec
;
246 sme
->open_time
.tv_usec
= share
->time
.tv_usec
;
247 sme
->file_id
= (uint32_t)share
->share_file_id
;
248 sme
->pid
= share
->pid
;
258 *p_delete_on_close
= ld
->u
.s
.delete_on_close
;
265 * Create an entry in the Samba share mode db.
268 int smb_create_share_mode_entry_ex(struct smbdb_ctx
*db_ctx
,
272 const struct smb_share_mode_entry
*new_entry
,
273 const char *sharepath
, /* Must be absolute utf8 path. */
274 const char *filename
) /* Must be relative utf8 path. */
277 struct locking_key lk
;
278 TDB_DATA locking_key
= get_locking_key(&lk
, dev
, ino
, extid
);
279 int orig_num_share_modes
= 0;
280 struct locking_data
*ld
= NULL
; /* internal samba db state. */
281 struct share_mode_entry
*shares
= NULL
;
282 uint8
*new_data_p
= NULL
;
283 size_t new_data_size
= 0;
285 db_data
= tdb_fetch(db_ctx
->smb_tdb
, locking_key
);
287 /* We must create the entry. */
288 db_data
.dptr
= (uint8
*)malloc(
289 sizeof(struct locking_data
) +
290 sizeof(struct share_mode_entry
) +
291 strlen(sharepath
) + 1 +
292 strlen(filename
) + 1);
296 ld
= (struct locking_data
*)db_data
.dptr
;
297 memset(ld
, '\0', sizeof(struct locking_data
));
298 ld
->u
.s
.num_share_mode_entries
= 1;
299 ld
->u
.s
.delete_on_close
= 0;
300 ld
->u
.s
.delete_token_size
= 0;
301 shares
= (struct share_mode_entry
*)(db_data
.dptr
+ sizeof(struct locking_data
));
302 create_share_mode_entry(shares
, new_entry
);
304 memcpy(db_data
.dptr
+ sizeof(struct locking_data
) + sizeof(struct share_mode_entry
),
306 strlen(sharepath
) + 1);
307 memcpy(db_data
.dptr
+ sizeof(struct locking_data
) + sizeof(struct share_mode_entry
) +
308 strlen(sharepath
) + 1,
310 strlen(filename
) + 1);
312 db_data
.dsize
= sizeof(struct locking_data
) + sizeof(struct share_mode_entry
) +
313 strlen(sharepath
) + 1 +
314 strlen(filename
) + 1;
315 if (tdb_store(db_ctx
->smb_tdb
, locking_key
, db_data
, TDB_INSERT
) == -1) {
323 /* Entry exists, we must add a new entry. */
324 new_data_p
= (uint8
*)malloc(
325 db_data
.dsize
+ sizeof(struct share_mode_entry
));
331 ld
= (struct locking_data
*)db_data
.dptr
;
332 orig_num_share_modes
= ld
->u
.s
.num_share_mode_entries
;
334 /* Copy the original data. */
335 memcpy(new_data_p
, db_data
.dptr
, sizeof(struct locking_data
) + (orig_num_share_modes
* sizeof(struct share_mode_entry
)));
337 /* Add in the new share mode */
338 shares
= (struct share_mode_entry
*)(new_data_p
+ sizeof(struct locking_data
) +
339 (orig_num_share_modes
* sizeof(struct share_mode_entry
)));
341 create_share_mode_entry(shares
, new_entry
);
343 ld
= (struct locking_data
*)new_data_p
;
344 ld
->u
.s
.num_share_mode_entries
++;
346 /* Append the original delete_token and filenames. */
347 memcpy(new_data_p
+ sizeof(struct locking_data
) + (ld
->u
.s
.num_share_mode_entries
* sizeof(struct share_mode_entry
)),
348 db_data
.dptr
+ sizeof(struct locking_data
) + (orig_num_share_modes
* sizeof(struct share_mode_entry
)),
349 db_data
.dsize
- sizeof(struct locking_data
) - (orig_num_share_modes
* sizeof(struct share_mode_entry
)));
351 new_data_size
= db_data
.dsize
+ sizeof(struct share_mode_entry
);
355 db_data
.dptr
= new_data_p
;
356 db_data
.dsize
= new_data_size
;
358 if (tdb_store(db_ctx
->smb_tdb
, locking_key
, db_data
, TDB_REPLACE
) == -1) {
367 * Create an entry in the Samba share mode db. Original interface - doesn't
368 * Distinguish between share path and filename. Fudge this by using a
369 * sharepath of / and a relative filename of (filename+1).
372 int smb_create_share_mode_entry(struct smbdb_ctx
*db_ctx
,
376 const struct smb_share_mode_entry
*new_entry
,
377 const char *filename
) /* Must be absolute utf8 path. */
379 if (*filename
!= '/') {
382 return smb_create_share_mode_entry_ex(db_ctx
, dev
, ino
, extid
, new_entry
,
386 int smb_delete_share_mode_entry(struct smbdb_ctx
*db_ctx
,
390 const struct smb_share_mode_entry
*del_entry
)
393 struct locking_key lk
;
394 TDB_DATA locking_key
= get_locking_key(&lk
, dev
, ino
, extid
);
395 int orig_num_share_modes
= 0;
396 struct locking_data
*ld
= NULL
; /* internal samba db state. */
397 struct share_mode_entry
*shares
= NULL
;
398 uint8
*new_data_p
= NULL
;
399 size_t remaining_size
= 0;
400 size_t i
, num_share_modes
;
401 const uint8
*remaining_ptr
= NULL
;
403 db_data
= tdb_fetch(db_ctx
->smb_tdb
, locking_key
);
405 return -1; /* Error - missing entry ! */
408 ld
= (struct locking_data
*)db_data
.dptr
;
409 orig_num_share_modes
= ld
->u
.s
.num_share_mode_entries
;
410 shares
= (struct share_mode_entry
*)(db_data
.dptr
+ sizeof(struct locking_data
));
412 if (orig_num_share_modes
== 1) {
413 /* Only one entry - better be ours... */
414 if (!share_mode_entry_equal(del_entry
, shares
)) {
415 /* Error ! We can't delete someone else's entry ! */
419 /* It's ours - just remove the entire record. */
421 return tdb_delete(db_ctx
->smb_tdb
, locking_key
);
424 /* More than one - allocate a new record minus the one we'll delete. */
425 new_data_p
= (uint8
*)malloc(
426 db_data
.dsize
- sizeof(struct share_mode_entry
));
432 /* Copy the header. */
433 memcpy(new_data_p
, db_data
.dptr
, sizeof(struct locking_data
));
436 for (i
= 0; i
< orig_num_share_modes
; i
++) {
437 struct share_mode_entry
*share
= &shares
[i
];
438 struct server_id pid
= share
->pid
;
440 /* Check this process really exists. */
441 if (kill(sharemodes_procid_to_pid(&pid
), 0) == -1 && (errno
== ESRCH
)) {
442 continue; /* No longer exists. */
445 if (share_mode_entry_equal(del_entry
, share
)) {
446 continue; /* This is our delete taget. */
449 memcpy(new_data_p
+ sizeof(struct locking_data
) +
450 (num_share_modes
* sizeof(struct share_mode_entry
)),
451 share
, sizeof(struct share_mode_entry
) );
456 if (num_share_modes
== 0) {
457 /* None left after pruning. Delete record. */
460 return tdb_delete(db_ctx
->smb_tdb
, locking_key
);
463 /* Copy any delete token plus the terminating filenames. */
464 remaining_ptr
= db_data
.dptr
+ sizeof(struct locking_data
) + (orig_num_share_modes
* sizeof(struct share_mode_entry
));
465 remaining_size
= db_data
.dsize
- (remaining_ptr
- db_data
.dptr
);
467 memcpy(new_data_p
+ sizeof(struct locking_data
) + (num_share_modes
* sizeof(struct share_mode_entry
)),
473 db_data
.dptr
= new_data_p
;
475 /* Re-save smaller record. */
476 ld
= (struct locking_data
*)db_data
.dptr
;
477 ld
->u
.s
.num_share_mode_entries
= num_share_modes
;
479 db_data
.dsize
= sizeof(struct locking_data
) + (num_share_modes
* sizeof(struct share_mode_entry
)) + remaining_size
;
481 if (tdb_store(db_ctx
->smb_tdb
, locking_key
, db_data
, TDB_REPLACE
) == -1) {
489 int smb_change_share_mode_entry(struct smbdb_ctx
*db_ctx
,
493 const struct smb_share_mode_entry
*set_entry
,
494 const struct smb_share_mode_entry
*new_entry
)
497 struct locking_key lk
;
498 TDB_DATA locking_key
= get_locking_key(&lk
, dev
, ino
, extid
);
499 int num_share_modes
= 0;
500 struct locking_data
*ld
= NULL
; /* internal samba db state. */
501 struct share_mode_entry
*shares
= NULL
;
505 db_data
= tdb_fetch(db_ctx
->smb_tdb
, locking_key
);
507 return -1; /* Error - missing entry ! */
510 ld
= (struct locking_data
*)db_data
.dptr
;
511 num_share_modes
= ld
->u
.s
.num_share_mode_entries
;
512 shares
= (struct share_mode_entry
*)(db_data
.dptr
+ sizeof(struct locking_data
));
514 for (i
= 0; i
< num_share_modes
; i
++) {
515 struct share_mode_entry
*share
= &shares
[i
];
516 struct server_id pid
= share
->pid
;
518 /* Check this process really exists. */
519 if (kill(sharemodes_procid_to_pid(&pid
), 0) == -1 && (errno
== ESRCH
)) {
520 continue; /* No longer exists. */
523 if (share_mode_entry_equal(set_entry
, share
)) {
524 create_share_mode_entry(share
, new_entry
);
535 /* Save modified data. */
536 if (tdb_store(db_ctx
->smb_tdb
, locking_key
, db_data
, TDB_REPLACE
) == -1) {