Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into v4-0-test
[kai/samba-autobuild/.git] / source4 / scripting / python / misc.i
1 /* 
2    Unix SMB/CIFS implementation.
3    Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007
4    
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.
9    
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.
14    
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/>.
17 */
18
19 %module(docstring="Python bindings for miscellaneous Samba functions.",package="samba.misc") misc
20
21 %{
22 #include "includes.h"
23 #include "ldb.h"
24 #include "param/param.h"
25 #include "auth/credentials/credentials.h"
26 #include "dsdb/samdb/samdb.h"
27 #include "lib/ldb-samba/ldif_handlers.h"
28 #include "librpc/ndr/libndr.h"
29 %}
30
31 %import "stdint.i"
32 %include "exception.i"
33 %import "../../lib/talloc/talloc.i"
34 %import "../../lib/ldb/ldb.i"
35 %import "../../auth/credentials/credentials.i"
36 %import "../../param/param.i"
37 %import "../../libcli/security/security.i"
38 %include "../../libcli/util/errors.i"
39
40 %feature("docstring") generate_random_str "S.random_password(len) -> string\n" \
41                                           "Generate random password with specified length.";
42
43 %rename(random_password) generate_random_str;
44 char *generate_random_str(TALLOC_CTX *mem_ctx, size_t len);
45
46 %feature("docstring") ldb_set_credentials "S.set_credentials(credentials)\n"
47                                           "Set credentials to use when connecting.";
48
49 %feature("docstring") ldb_set_session_info "S.set_session_info(session_info)\n"
50                                           "Set session info to use when connecting.";
51
52 %feature("docstring") ldb_set_loadparm "S.set_loadparm(session_info)\n"
53                                           "Set loadparm context to use when connecting.";
54
55 %inline %{
56 void ldb_set_credentials(struct ldb_context *ldb, struct cli_credentials *creds)
57 {
58     ldb_set_opaque(ldb, "credentials", creds);
59 }
60
61 void ldb_set_session_info(struct ldb_context *ldb, struct auth_session_info *session_info)
62 {
63     ldb_set_opaque(ldb, "sessionInfo", session_info);
64 }
65
66 void ldb_set_loadparm(struct ldb_context *ldb, struct loadparm_context *lp_ctx)
67 {
68     ldb_set_opaque(ldb, "loadparm", lp_ctx);
69 }
70
71 %}
72
73 %feature("docstring") samdb_set_domain_sid "S.set_domain_sid(sid)\n"
74                                           "Set SID of domain to use.";
75 bool samdb_set_domain_sid(struct ldb_context *ldb, 
76                           const struct dom_sid *dom_sid_in);
77
78 WERROR dsdb_attach_schema_from_ldif_file(struct ldb_context *ldb, const char *pf, const char *df);
79
80 %feature("docstring") samba_version_string "version()\n"
81                                           "Obtain the Samba version.";
82 %rename(version) samba_version_string;
83 const char *samba_version_string(void);
84 int dsdb_set_global_schema(struct ldb_context *ldb);
85 %feature("docstring") ldb_register_samba_handlers "register_samba_handlers()\n"
86                                           "Register Samba-specific LDB modules and schemas.";
87 int ldb_register_samba_handlers(struct ldb_context *ldb);
88
89 %inline %{
90 bool dsdb_set_ntds_invocation_id(struct ldb_context *ldb, const char *guid)
91 {
92     struct GUID invocation_id_in;
93     if (NT_STATUS_IS_ERR(GUID_from_string(guid, &invocation_id_in))) {
94         return false;
95     }
96     return samdb_set_ntds_invocation_id(ldb, &invocation_id_in);
97 }
98 %}
99
100 char *private_path(TALLOC_CTX* mem_ctx, struct loadparm_context *lp_ctx,
101                const char *name);
102
103 typedef unsigned long time_t;
104
105 /*
106   convert from unix time to NT time
107 */
108 %inline %{
109 uint64_t unix2nttime(time_t t)
110 {
111         NTTIME nt;
112         unix_to_nt_time(&nt, t);
113         return (uint64_t)nt;
114 }
115 %}