s4:gensec/gssapi: make calculation of gensec_gssapi_sig_size() for aes keys more...
[Samba.git] / lib / util / idtree_random.c
blob80758e74d6dfbb8f3f3dbc09463efb9450a29694
1 /*
2 Unix SMB/CIFS implementation.
4 very efficient functions to manage mapping a id (such as a fnum) to
5 a pointer. This is used for fnum and search id allocation.
7 Copyright (C) Andrew Tridgell 2004
9 This code is derived from lib/idr.c in the 2.6 Linux kernel, which was
10 written by Jim Houston jim.houston@ccur.com, and is
11 Copyright (C) 2002 by Concurrent Computer Corporation
13 This program is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2 of the License, or
16 (at your option) any later version.
18 This program 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
21 GNU General Public License for more details.
23 You should have received a copy of the GNU General Public License
24 along with this program. If not, see <http://www.gnu.org/licenses/>.
28 see the section marked "public interface" below for documentation
31 /**
32 * @file
35 #include "replace.h"
36 #include "samba_util.h" /* generate_random() */
37 #include "idtree.h"
38 #include "idtree_random.h"
40 /**
41 allocate a new id randomly in the given range
43 _PUBLIC_ int idr_get_new_random(struct idr_context *idp, void *ptr, int limit)
45 int id;
47 /* first try a random starting point in the whole range, and if that fails,
48 then start randomly in the bottom half of the range. This can only
49 fail if the range is over half full, and finally fallback to any
50 free id */
51 id = idr_get_new_above(idp, ptr, 1+(generate_random() % limit), limit);
52 if (id == -1) {
53 id = idr_get_new_above(idp, ptr, 1+(generate_random()%(limit/2)), limit);
55 if (id == -1) {
56 id = idr_get_new_above(idp, ptr, 1, limit);
59 return id;