Merge branch 'v4-0-test' of git://git.samba.org/samba into 4-0-local
[samba.git] / source4 / auth / credentials / credentials.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(package="samba.credentials") credentials
20
21 %{
22
23 /* Include headers */
24 #include <stdint.h>
25 #include <stdbool.h>
26
27 #include "includes.h"
28 #include "auth/credentials/credentials.h"
29 #include "param/param.h"
30 typedef struct cli_credentials cli_credentials;
31 %}
32
33 %import "carrays.i"
34 %import "typemaps.i"
35 %import "param/param.i"
36
37 %typemap(default,noblock=1) struct cli_credentials * {
38     $1 = NULL;
39 }
40
41 %{
42 #include "librpc/gen_ndr/samr.h" /* for struct samr_Password */
43 %}
44
45 %typemap(out,noblock=1) struct samr_Password * {
46     $result = PyString_FromStringAndSize((char *)$1->hash, 16);
47 }
48
49 %talloctype(cli_credentials);
50 %rename(Credentials) cli_credentials;
51 typedef struct cli_credentials {
52     %extend {
53         cli_credentials(void) {
54             return cli_credentials_init(NULL);
55         }
56         /* username */
57         const char *get_username(void);
58         bool set_username(const char *value, 
59                           enum credentials_obtained=CRED_SPECIFIED);
60
61         /* password */
62         const char *get_password(void);
63         bool set_password(const char *val, 
64                           enum credentials_obtained=CRED_SPECIFIED);
65
66         /* domain */
67         const char *get_domain(void);
68         bool set_domain(const char *val, 
69                         enum credentials_obtained=CRED_SPECIFIED);
70
71         /* realm */
72         const char *get_realm(void);
73         bool set_realm(const char *val, 
74                        enum credentials_obtained=CRED_SPECIFIED);
75
76         void parse_string(const char *text,
77                        enum credentials_obtained=CRED_SPECIFIED);
78
79         /* bind dn */
80         const char *get_bind_dn(void);
81         bool set_bind_dn(const char *bind_dn);
82
83         /* workstation name */
84         const char *get_workstation(void);
85         bool set_workstation(const char *workstation, 
86                              enum credentials_obtained obtained=CRED_SPECIFIED);
87
88         void guess(struct loadparm_context *lp_ctx);
89         bool is_anonymous(void);
90
91         const struct samr_Password *get_nt_hash(TALLOC_CTX *mem_ctx);
92
93         bool authentication_requested(void);
94
95         bool wrong_password(void);
96     }
97 } cli_credentials;
98
99 %{
100 struct cli_credentials *cli_credentials_from_py_object(PyObject *py_obj)
101 {
102     struct cli_credentials *ret;
103
104     if (py_obj == Py_None) {
105         return cli_credentials_init_anon(NULL);
106     }
107
108     if (SWIG_ConvertPtr(py_obj, (void *)&ret, SWIGTYPE_p_cli_credentials, 0 |  0 ) < 0) {
109         return NULL; 
110     }
111     return ret;
112 }
113
114 %}