r10504: - seperate implementation specific stuff, from the generic composite
[samba.git] / source4 / libnet / composite.h
1 /* 
2    Unix SMB/CIFS implementation.
3
4    Copyright (C) Rafal Szczesniak 2005
5    
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
10    
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21 /*
22   composite function io definitions
23 */
24
25 #include "librpc/gen_ndr/ndr_samr.h"
26
27 /*
28  * Monitor structure and message types definitions. Composite function monitoring
29  * allows client application to be notified on function progress. This enables
30  * eg. gui client to display progress bars, status messages, etc.
31  */
32
33
34 #define  rpc_create_user        (0x00000001)        /* userman.h */
35 #define  rpc_open_user          (0x00000002)        /* userinfo.h */
36 #define  rpc_query_user         (0x00000003)        /* userinfo.h */
37 #define  rpc_close_user         (0x00000004)        /* userinfo.h */
38 #define  rpc_lookup_name        (0x00000005)        /* userman.h */
39 #define  rpc_delete_user        (0x00000006)        /* userman.h */
40
41 struct monitor_msg {
42         uint32_t   type;
43         void       *data;
44         size_t     data_size;
45 };
46
47 struct libnet_rpc_userinfo {
48         struct {
49                 struct policy_handle domain_handle;
50                 const char *sid;
51                 uint16_t level;
52         } in;
53         struct {
54                 union samr_UserInfo info;
55         } out;
56 };
57
58
59 struct libnet_rpc_useradd {
60         struct {
61                 struct policy_handle domain_handle;
62                 const char *username;
63         } in;
64         struct {
65                 struct policy_handle user_handle;
66         } out;
67 };
68
69
70 struct libnet_rpc_userdel {
71         struct {
72                 struct policy_handle domain_handle;
73                 const char *username;
74         } in;
75         struct {
76                 struct policy_handle user_handle;
77         } out;
78 };
79
80
81 #define USERMOD_FIELD_ACCOUNT_NAME    ( 0x00000001 )
82 #define USERMOD_FIELD_FULL_NAME       ( 0x00000002 )
83 #define USERMOD_FIELD_DESCRIPTION     ( 0x00000010 )
84 #define USERMOD_FIELD_COMMENT         ( 0x00000020 )
85 #define USERMOD_FIELD_LOGON_SCRIPT    ( 0x00000100 )
86 #define USERMOD_FIELD_PROFILE_PATH    ( 0x00000200 )
87 #define USERMOD_FIELD_ACCT_EXPIRY     ( 0x00004000 )
88 #define USERMOD_FIELD_ALLOW_PASS_CHG  ( 0x00008000 )
89 #define USERMOD_FIELD_FORCE_PASS_CHG  ( 0x00010000 )
90 #define USERMOD_FIELD_ACCT_FLAGS      ( 0x00100000 )
91
92 struct libnet_rpc_usermod {
93         struct {
94                 struct policy_handle domain_handle;
95                 const char *username;
96
97                 struct usermod_change {
98                         uint32_t fields;    /* bitmask field */
99
100                         const char *account_name;
101                         const char *full_name;
102                         const char *description;
103                         const char *comment;
104                         const char *logon_script;
105                         const char *profile_path;
106                         struct timeval *acct_expiry;
107                         struct timeval *allow_password_change;
108                         struct timeval *force_password_change;
109                         uint32_t acct_flags;
110                 } change;
111         } in;
112 };
113
114
115 struct libnet_rpc_domain_open {
116         struct {
117                 const char *domain_name;
118                 uint32_t access_mask;
119         } in;
120         struct {
121                 struct policy_handle domain_handle;
122         } out;
123 };