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 2 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, write to the Free Software
25 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 #include "smb_share_modes.h"
31 /* Remove the paranoid malloc checker. */
36 static BOOL
sharemodes_procid_equal(const struct process_id
*p1
, const struct process_id
*p2
)
38 return (p1
->pid
== p2
->pid
);
41 static pid_t
sharemodes_procid_to_pid(const struct process_id
*proc
)
47 * open/close sharemode database.
50 struct smbdb_ctx
*smb_share_mode_db_open(const char *db_path
)
52 struct smbdb_ctx
*smb_db
= (struct smbdb_ctx
*)malloc(sizeof(struct smbdb_ctx
));
58 memset(smb_db
, '\0', sizeof(struct smbdb_ctx
));
60 smb_db
->smb_tdb
= tdb_open(db_path
,
61 0, TDB_DEFAULT
|TDB_CLEAR_IF_FIRST
,
65 if (!smb_db
->smb_tdb
) {
70 /* Should check that this is the correct version.... */
74 /* key and data records in the tdb locking database */
80 int smb_share_mode_db_close(struct smbdb_ctx
*db_ctx
)
82 int ret
= tdb_close(db_ctx
->smb_tdb
);
87 static TDB_DATA
get_locking_key(uint64_t dev
, uint64_t ino
)
89 static struct locking_key lk
;
92 memset(&lk
, '\0', sizeof(struct locking_key
));
93 lk
.dev
= (SMB_DEV_T
)dev
;
94 lk
.inode
= (SMB_INO_T
)ino
;
95 ld
.dptr
= (char *)&lk
;
96 ld
.dsize
= sizeof(lk
);
101 * lock/unlock entry in sharemode database.
104 int smb_lock_share_mode_entry(struct smbdb_ctx
*db_ctx
,
108 return tdb_chainlock(db_ctx
->smb_tdb
, get_locking_key(dev
, ino
));
111 int smb_unlock_share_mode_entry(struct smbdb_ctx
*db_ctx
,
115 return tdb_chainunlock(db_ctx
->smb_tdb
, get_locking_key(dev
, ino
));
119 * Check if an external smb_share_mode_entry and an internal share_mode entry match.
122 static int share_mode_entry_equal(const struct smb_share_mode_entry
*e_entry
,
123 const struct share_mode_entry
*entry
)
125 return (sharemodes_procid_equal(&e_entry
->pid
, &entry
->pid
) &&
126 e_entry
->file_id
== (uint32_t)entry
->share_file_id
&&
127 e_entry
->open_time
.tv_sec
== entry
->time
.tv_sec
&&
128 e_entry
->open_time
.tv_usec
== entry
->time
.tv_usec
&&
129 e_entry
->share_access
== (uint32_t)entry
->share_access
&&
130 e_entry
->access_mask
== (uint32_t)entry
->access_mask
&&
131 e_entry
->dev
== (uint64_t)entry
->dev
&&
132 e_entry
->ino
== (uint64_t)entry
->inode
);
136 * Create an internal Samba share_mode entry from an external smb_share_mode_entry.
139 static void create_share_mode_entry(struct share_mode_entry
*out
,
140 const struct smb_share_mode_entry
*in
)
142 memset(out
, '\0', sizeof(struct share_mode_entry
));
145 out
->share_file_id
= (unsigned long)in
->file_id
;
146 out
->time
.tv_sec
= in
->open_time
.tv_sec
;
147 out
->time
.tv_usec
= in
->open_time
.tv_usec
;
148 out
->share_access
= in
->share_access
;
149 out
->access_mask
= in
->access_mask
;
150 out
->dev
= (SMB_DEV_T
)in
->dev
;
151 out
->inode
= (SMB_INO_T
)in
->ino
;
155 * Return the current share mode list for an open file.
156 * This uses similar (but simplified) logic to locking/locking.c
159 int smb_get_share_mode_entries(struct smbdb_ctx
*db_ctx
,
162 struct smb_share_mode_entry
**pp_list
,
163 unsigned char *p_delete_on_close
)
166 struct smb_share_mode_entry
*list
= NULL
;
167 int num_share_modes
= 0;
168 struct locking_data
*ld
= NULL
; /* internal samba db state. */
169 struct share_mode_entry
*shares
= NULL
;
174 *p_delete_on_close
= 0;
176 db_data
= tdb_fetch(db_ctx
->smb_tdb
, get_locking_key(dev
, ino
));
181 ld
= (struct locking_data
*)db_data
.dptr
;
182 num_share_modes
= ld
->u
.s
.num_share_mode_entries
;
184 if (!num_share_modes
) {
189 list
= (struct smb_share_mode_entry
*)malloc(sizeof(struct smb_share_mode_entry
)*num_share_modes
);
195 memset(list
, '\0', num_share_modes
* sizeof(struct smb_share_mode_entry
));
197 shares
= (struct share_mode_entry
*)(db_data
.dptr
+ sizeof(struct share_mode_entry
));
200 for (i
= 0; i
< num_share_modes
; i
++) {
201 struct share_mode_entry
*share
= &shares
[i
];
202 struct smb_share_mode_entry
*sme
= &list
[list_num
];
203 struct process_id pid
= share
->pid
;
205 /* Check this process really exists. */
206 if (kill(sharemodes_procid_to_pid(&pid
), 0) == -1 && (errno
== ESRCH
)) {
207 continue; /* No longer exists. */
210 /* Ignore deferred open entries. */
211 if (share
->op_type
== DEFERRED_OPEN_ENTRY
) {
215 /* Copy into the external list. */
216 sme
->dev
= (uint64_t)share
->dev
;
217 sme
->ino
= (uint64_t)share
->inode
;
218 sme
->share_access
= (uint32_t)share
->share_access
;
219 sme
->access_mask
= (uint32_t)share
->access_mask
;
220 sme
->open_time
.tv_sec
= share
->time
.tv_sec
;
221 sme
->open_time
.tv_usec
= share
->time
.tv_usec
;
222 sme
->file_id
= (uint32_t)share
->share_file_id
;
223 sme
->pid
= share
->pid
;
233 *p_delete_on_close
= ld
->u
.s
.delete_on_close
;
240 * Create an entry in the Samba share mode db.
243 int smb_create_share_mode_entry_ex(struct smbdb_ctx
*db_ctx
,
246 const struct smb_share_mode_entry
*new_entry
,
247 const char *sharepath
, /* Must be absolute utf8 path. */
248 const char *filename
) /* Must be relative utf8 path. */
251 TDB_DATA locking_key
= get_locking_key(dev
, ino
);
252 int orig_num_share_modes
= 0;
253 struct locking_data
*ld
= NULL
; /* internal samba db state. */
254 struct share_mode_entry
*shares
= NULL
;
255 char *new_data_p
= NULL
;
256 size_t new_data_size
= 0;
258 db_data
= tdb_fetch(db_ctx
->smb_tdb
, locking_key
);
260 /* We must create the entry. */
261 db_data
.dptr
= malloc((2*sizeof(struct share_mode_entry
)) +
262 strlen(sharepath
) + 1 +
263 strlen(filename
) + 1);
267 ld
= (struct locking_data
*)db_data
.dptr
;
268 memset(ld
, '\0', sizeof(struct locking_data
));
269 ld
->u
.s
.num_share_mode_entries
= 1;
270 ld
->u
.s
.delete_on_close
= 0;
271 ld
->u
.s
.initial_delete_on_close
= 0;
272 ld
->u
.s
.delete_token_size
= 0;
273 shares
= (struct share_mode_entry
*)(db_data
.dptr
+ sizeof(struct share_mode_entry
));
274 create_share_mode_entry(shares
, new_entry
);
276 memcpy(db_data
.dptr
+ 2*sizeof(struct share_mode_entry
),
278 strlen(sharepath
) + 1);
279 memcpy(db_data
.dptr
+ 2*sizeof(struct share_mode_entry
) +
280 strlen(sharepath
) + 1,
282 strlen(filename
) + 1);
284 db_data
.dsize
= 2*sizeof(struct share_mode_entry
) +
285 strlen(sharepath
) + 1 +
286 strlen(filename
) + 1;
287 if (tdb_store(db_ctx
->smb_tdb
, locking_key
, db_data
, TDB_INSERT
) == -1) {
295 /* Entry exists, we must add a new entry. */
296 new_data_p
= malloc(db_data
.dsize
+ sizeof(struct share_mode_entry
));
302 ld
= (struct locking_data
*)db_data
.dptr
;
303 orig_num_share_modes
= ld
->u
.s
.num_share_mode_entries
;
305 /* Copy the original data. */
306 memcpy(new_data_p
, db_data
.dptr
, (orig_num_share_modes
+1)*sizeof(struct share_mode_entry
));
308 /* Add in the new share mode */
309 shares
= (struct share_mode_entry
*)(new_data_p
+
310 ((orig_num_share_modes
+1)*sizeof(struct share_mode_entry
)));
312 create_share_mode_entry(shares
, new_entry
);
314 ld
= (struct locking_data
*)new_data_p
;
315 ld
->u
.s
.num_share_mode_entries
++;
317 /* Append the original delete_token and filenames. */
318 memcpy(new_data_p
+ ((ld
->u
.s
.num_share_mode_entries
+1)*sizeof(struct share_mode_entry
)),
319 db_data
.dptr
+ ((orig_num_share_modes
+1)*sizeof(struct share_mode_entry
)),
320 db_data
.dsize
- ((orig_num_share_modes
+1) * sizeof(struct share_mode_entry
)));
322 new_data_size
= db_data
.dsize
+ sizeof(struct share_mode_entry
);
326 db_data
.dptr
= new_data_p
;
327 db_data
.dsize
= new_data_size
;
329 if (tdb_store(db_ctx
->smb_tdb
, locking_key
, db_data
, TDB_REPLACE
) == -1) {
338 * Create an entry in the Samba share mode db. Original interface - doesn't
339 * Distinguish between share path and filename. Fudge this by using a
340 * sharepath of / and a relative filename of (filename+1).
343 int smb_create_share_mode_entry(struct smbdb_ctx
*db_ctx
,
346 const struct smb_share_mode_entry
*new_entry
,
347 const char *filename
) /* Must be absolute utf8 path. */
349 if (*filename
!= '/') {
352 return smb_create_share_mode_entry_ex(db_ctx
, dev
, ino
, new_entry
,
356 int smb_delete_share_mode_entry(struct smbdb_ctx
*db_ctx
,
359 const struct smb_share_mode_entry
*del_entry
)
362 TDB_DATA locking_key
= get_locking_key(dev
, ino
);
363 int orig_num_share_modes
= 0;
364 struct locking_data
*ld
= NULL
; /* internal samba db state. */
365 struct share_mode_entry
*shares
= NULL
;
366 char *new_data_p
= NULL
;
367 size_t remaining_size
= 0;
368 size_t i
, num_share_modes
;
369 const char *remaining_ptr
= NULL
;
371 db_data
= tdb_fetch(db_ctx
->smb_tdb
, locking_key
);
373 return -1; /* Error - missing entry ! */
376 ld
= (struct locking_data
*)db_data
.dptr
;
377 orig_num_share_modes
= ld
->u
.s
.num_share_mode_entries
;
378 shares
= (struct share_mode_entry
*)(db_data
.dptr
+ sizeof(struct share_mode_entry
));
380 if (orig_num_share_modes
== 1) {
381 /* Only one entry - better be ours... */
382 if (!share_mode_entry_equal(del_entry
, shares
)) {
383 /* Error ! We can't delete someone else's entry ! */
387 /* It's ours - just remove the entire record. */
389 return tdb_delete(db_ctx
->smb_tdb
, locking_key
);
392 /* More than one - allocate a new record minus the one we'll delete. */
393 new_data_p
= malloc(db_data
.dsize
- sizeof(struct share_mode_entry
));
399 /* Copy the header. */
400 memcpy(new_data_p
, db_data
.dptr
, sizeof(struct share_mode_entry
));
403 for (i
= 0; i
< orig_num_share_modes
; i
++) {
404 struct share_mode_entry
*share
= &shares
[i
];
405 struct process_id pid
= share
->pid
;
407 /* Check this process really exists. */
408 if (kill(sharemodes_procid_to_pid(&pid
), 0) == -1 && (errno
== ESRCH
)) {
409 continue; /* No longer exists. */
412 if (share_mode_entry_equal(del_entry
, share
)) {
413 continue; /* This is our delete taget. */
416 memcpy(new_data_p
+ ((num_share_modes
+1)*sizeof(struct share_mode_entry
)),
417 share
, sizeof(struct share_mode_entry
) );
422 if (num_share_modes
== 0) {
423 /* None left after pruning. Delete record. */
426 return tdb_delete(db_ctx
->smb_tdb
, locking_key
);
429 /* Copy any delete token plus the terminating filenames. */
430 remaining_ptr
= db_data
.dptr
+ ((orig_num_share_modes
+1) * sizeof(struct share_mode_entry
));
431 remaining_size
= db_data
.dsize
- (remaining_ptr
- db_data
.dptr
);
433 memcpy(new_data_p
+ ((num_share_modes
+1)*sizeof(struct share_mode_entry
)),
439 db_data
.dptr
= new_data_p
;
441 /* Re-save smaller record. */
442 ld
= (struct locking_data
*)db_data
.dptr
;
443 ld
->u
.s
.num_share_mode_entries
= num_share_modes
;
445 db_data
.dsize
= ((num_share_modes
+1)*sizeof(struct share_mode_entry
)) + remaining_size
;
447 if (tdb_store(db_ctx
->smb_tdb
, locking_key
, db_data
, TDB_REPLACE
) == -1) {
455 int smb_change_share_mode_entry(struct smbdb_ctx
*db_ctx
,
458 const struct smb_share_mode_entry
*set_entry
,
459 const struct smb_share_mode_entry
*new_entry
)
462 TDB_DATA locking_key
= get_locking_key(dev
, ino
);
463 int num_share_modes
= 0;
464 struct locking_data
*ld
= NULL
; /* internal samba db state. */
465 struct share_mode_entry
*shares
= NULL
;
469 db_data
= tdb_fetch(db_ctx
->smb_tdb
, locking_key
);
471 return -1; /* Error - missing entry ! */
474 ld
= (struct locking_data
*)db_data
.dptr
;
475 num_share_modes
= ld
->u
.s
.num_share_mode_entries
;
476 shares
= (struct share_mode_entry
*)(db_data
.dptr
+ sizeof(struct share_mode_entry
));
478 for (i
= 0; i
< num_share_modes
; i
++) {
479 struct share_mode_entry
*share
= &shares
[i
];
480 struct process_id pid
= share
->pid
;
482 /* Check this process really exists. */
483 if (kill(sharemodes_procid_to_pid(&pid
), 0) == -1 && (errno
== ESRCH
)) {
484 continue; /* No longer exists. */
487 if (share_mode_entry_equal(set_entry
, share
)) {
488 create_share_mode_entry(share
, new_entry
);
499 /* Save modified data. */
500 if (tdb_store(db_ctx
->smb_tdb
, locking_key
, db_data
, TDB_REPLACE
) == -1) {