1 # Samba common functions
3 # Copyright (C) Matthieu Patou <mat@matws.net>
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
24 def confirm(msg
, forced
=False, allow_all
=False):
25 """confirm an action with the user
27 :param msg: A string to print to the user
28 :param forced: Are the answer forced
31 print("%s [YES]" % msg
)
45 mapping
['ALL'] = 'ALL'
46 mapping
['NONE'] = 'NONE'
47 prompt
= '[y/N/all/none]'
50 v
= raw_input(msg
+ ' %s ' % prompt
)
54 print("Unknown response '%s'" % v
)
57 def normalise_int32(ivalue
):
58 '''normalise a ldap integer to signed 32 bit'''
59 if int(ivalue
) & 0x80000000 and int(ivalue
) > 0:
60 return str(int(ivalue
) - 0x100000000)
64 class dsdb_Dn(object):
65 '''a class for binary DN'''
67 def __init__(self
, samdb
, dnstring
, syntax_oid
=None):
68 '''create a dsdb_Dn'''
69 if syntax_oid
is None:
70 # auto-detect based on string
71 if dnstring
.startswith("B:"):
72 syntax_oid
= dsdb
.DSDB_SYNTAX_BINARY_DN
73 elif dnstring
.startswith("S:"):
74 syntax_oid
= dsdb
.DSDB_SYNTAX_STRING_DN
76 syntax_oid
= dsdb
.DSDB_SYNTAX_OR_NAME
77 if syntax_oid
in [dsdb
.DSDB_SYNTAX_BINARY_DN
, dsdb
.DSDB_SYNTAX_STRING_DN
]:
79 colons
= dnstring
.split(':')
81 raise RuntimeError("Invalid DN %s" % dnstring
)
82 prefix_len
= 4 + len(colons
[1]) + int(colons
[1])
83 self
.prefix
= dnstring
[0:prefix_len
]
84 self
.binary
= self
.prefix
[3+len(colons
[1]):-1]
85 self
.dnstring
= dnstring
[prefix_len
:]
87 self
.dnstring
= dnstring
90 self
.dn
= ldb
.Dn(samdb
, self
.dnstring
)
93 return self
.prefix
+ str(self
.dn
.extended_str(mode
=1))
95 def get_binary_integer(self
):
96 '''return binary part of a dsdb_Dn as an integer, or None'''
99 return int(self
.binary
, 16)