Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-05-02 | s3-smbd: avoid using pipes_struct when only session_info is needed. | Günther Deschner | 1 | -1/+1 | |
Guenther | |||||
2011-05-02 | s3-printing: avoid using pipes_struct when only session_info is needed. | Günther Deschner | 1 | -2/+2 | |
Guenther | |||||
2011-05-02 | s3-proto: move remaining srvsvc protos to own header file. | Günther Deschner | 3 | -0/+35 | |
Guenther | |||||
2011-05-02 | s3-proto: move remaining spoolss protos to own header file. | Günther Deschner | 3 | -0/+42 | |
Guenther | |||||
2011-05-02 | s3-proto: move more rpc_server prototypes out of proto.h | Günther Deschner | 4 | -1/+54 | |
Guenther | |||||
2011-05-02 | s3-rpc_server: remove proto of nonexisting function | Günther Deschner | 1 | -1/+1 | |
(rpc_pipe_register_commands). Guenther | |||||
2011-05-02 | s3-util: move valid_share_pathname() to lib/util.c | Günther Deschner | 1 | -34/+0 | |
Guenther | |||||
2011-05-02 | s3-proto: move rpc_srv_register protos and structs to town headerfile. | Günther Deschner | 6 | -0/+45 | |
Guenther | |||||
2011-04-29 | s3-proto: move more headers to rpc_server/rpc_ncacn_np.h where they origin from. | Günther Deschner | 3 | -0/+8 | |
Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Fri Apr 29 22:05:07 CEST 2011 on sn-devel-104 | |||||
2011-04-29 | s3-proto: remove duplicate prototypes. | Günther Deschner | 1 | -1/+2 | |
Guenther | |||||
2011-04-29 | s3-rpc_server: remove some unneeded headers. | Günther Deschner | 1 | -4/+0 | |
Guenther | |||||
2011-04-29 | s3-tevent: only include ../lib/util/tevent wrappers where needed. | Günther Deschner | 2 | -0/+2 | |
Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Fri Apr 29 14:00:30 CEST 2011 on sn-devel-104 | |||||
2011-04-29 | s3-tsocket: only include ../lib/tsocket/tsocket.h where needed. | Günther Deschner | 2 | -0/+2 | |
Guenther | |||||
2011-04-29 | build: Fix kerberos build issues in top level build | Andrew Bartlett | 1 | -1/+2 | |
2011-04-27 | s3-rpc_server Fix compile without kerberos | Andrew Bartlett | 1 | -2/+7 | |
Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Wed Apr 27 23:08:48 CEST 2011 on sn-devel-104 | |||||
2011-04-27 | auth/kerberos: Create common helper to get the verified PAC from GSSAPI | Andrew Bartlett | 1 | -54/+8 | |
This only works for Heimdal and MIT Krb5 1.8, other versions will get an ACCESS_DEINED error. We no longer manually verify any details of the PAC in Samba for GSSAPI logins, as we never had the information to do it properly, and it is better to have the GSSAPI library handle it. Andrew Bartlett | |||||
2011-04-20 | s3-spoolss: fix debug statement in spoolss_addprinterex_level_2(). | Günther Deschner | 1 | -2/+2 | |
Guenther | |||||
2011-04-20 | s3-gse: Allow the GSSAPI wrapper to load a keytab using gss_krb5_import_cred() | Andrew Bartlett | 1 | -1/+1 | |
This Heimdal function does not set the global state, and allows the GSSAPI server to progress further when compiled against Heimdal (such as in the top level build). The ability to specify a keytab has been removed from the API as it is unused, and and the Heimdal function (avoiding setting global variables) works with an open keytab. Andrew Bartlett | |||||
2011-04-14 | s3-includes: move struct pipe_open_rec to srvsvc rpc server. | Günther Deschner | 1 | -0/+9 | |
Guenther | |||||
2011-04-13 | s3-rpc_client: add and use rpc_client/rpc_client.h. | Günther Deschner | 1 | -0/+1 | |
Guenther | |||||
2011-04-11 | s3: Wrap creating the svcctl keys in a transaction | Volker Lendecke | 1 | -0/+28 | |
This makes the startup of smbd in make test much quicker and thus more reliable (cherry picked from commit f1aa38b414e97d8687d0bebf65baa384f75301b4) Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Mon Apr 11 22:09:58 CEST 2011 on sn-devel-104 | |||||
2011-04-05 | auth: Move auth_session_info into IDL | Andrew Bartlett | 2 | -19/+32 | |
This changes auth_session_info_transport to just be a wrapper, rather than a copy that has to be kept in sync. As auth_session_info was already wrapped in python, this required changes to the existing pyauth wrapper and it's users. Andrew Bartlett | |||||
2011-04-05 | s3-auth Rename user_session_key -> session_key to match auth_session_info | Andrew Bartlett | 6 | -16/+16 | |
2011-04-05 | s3-auth use create_local_token() to transform server_info -> session_info | Andrew Bartlett | 2 | -8/+7 | |
Before a auth_serversupplied_info struct can be used for authorization, the local groups and privileges must be calculated. create_local_token() now copies the server_info, and then sets the calulated token and unix groups. Soon, it will also transform the result into an expanded struct auth_session_info. Until then, the variable name (server_info vs session_info provides a clue to the developer about what information has been entered in the structure). By moving the calls to create_local_token within the codebase, we remove duplication, and ensure that the session key (where modified) is consistently copied into the new structure. Andrew Bartlett | |||||
2011-04-04 | s3-rpc_server Remove comment, yes the key is correct. | Andrew Bartlett | 1 | -2/+0 | |
Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Mon Apr 4 13:31:52 CEST 2011 on sn-devel-104 | |||||
2011-04-04 | s3-auth consolidate create_local_token() into make_server_info_krb5() | Andrew Bartlett | 2 | -11/+1 | |
This ensures that all callers don't need to each add builtin groups and privileges to the user's token Andrew Bartlett | |||||
2011-03-31 | s3: Fix a typo | Volker Lendecke | 1 | -1/+1 | |
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Thu Mar 31 12:50:53 CEST 2011 on sn-devel-104 | |||||
2011-03-31 | s3-samr: make getgrgid() failure a little more visible in ↵ | Günther Deschner | 1 | -1/+1 | |
_samr_CreateDomAlias(). Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Thu Mar 31 01:00:42 CEST 2011 on sn-devel-104 | |||||
2011-03-30 | s3: Fix Coverity ID 2041, "UNUSED_VALUE" | Günther Deschner | 1 | -4/+10 | |
Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Wed Mar 30 13:49:35 CEST 2011 on sn-devel-104 | |||||
2011-03-30 | s3: Fix Coverity ID 2332: MISSING_BREAK | Volker Lendecke | 1 | -0/+1 | |
2011-03-30 | s3-rpc_server: move access check functions out of samr server. | Günther Deschner | 5 | -114/+163 | |
Guenther | |||||
2011-03-30 | s3: only include lib/privileges.h where needed. | Günther Deschner | 2 | -0/+2 | |
This finally removes the global lsa.h inclusion. Guenther | |||||
2011-03-30 | s3-includes: only include ntdomain.h where needed. | Günther Deschner | 20 | -0/+20 | |
Guenther | |||||
2011-03-30 | s3-messages: make ndr_messaging.h part of messages.h. | Günther Deschner | 4 | -4/+0 | |
Guenther | |||||
2011-03-30 | s3-messages: only include messages.h where needed. | Günther Deschner | 4 | -0/+4 | |
Guenther | |||||
2011-03-30 | s3-auth: rpc_server needs auth.h | Günther Deschner | 21 | -0/+21 | |
Guenther | |||||
2011-03-30 | s3: rpc_server needs parts of smbd. | Günther Deschner | 6 | -1/+6 | |
Guenther | |||||
2011-03-30 | s3-passdb: use passdb headers where needed. | Günther Deschner | 1 | -0/+2 | |
Guenther | |||||
2011-03-30 | s3-passdb: add passdb.h where needed. | Günther Deschner | 5 | -0/+5 | |
Guenther | |||||
2011-03-30 | registry: create and use shared libcli/registry/util_reg.h header. | Günther Deschner | 4 | -0/+4 | |
Guenther | |||||
2011-03-30 | s3-includes: only include system/filesys.h when needed. | Günther Deschner | 3 | -0/+3 | |
Guenther | |||||
2011-03-30 | s3-includes: only include system/passwd.h when needed. | Günther Deschner | 3 | -0/+3 | |
Guenther | |||||
2011-03-30 | s3-includes: only include system/terminal.h when needed. | Günther Deschner | 1 | -0/+1 | |
Guenther | |||||
2011-03-30 | s3-winbind: remove global inclusion of libwbclient. | Günther Deschner | 1 | -0/+1 | |
Guenther | |||||
2011-03-30 | lib/util/util_pw: share sys_get{pw,gr} group of calls. | Günther Deschner | 1 | -0/+1 | |
Guenther | |||||
2011-03-29 | s3-rpc_server: Fixed rpc_pipe_open_internal documentation. | Andreas Schneider | 1 | -5/+11 | |
Signed-off-by: Günther Deschner <gd@samba.org> | |||||
2011-03-29 | s3-rpc_server: Only allow embedded, daemon and external server type. | Andreas Schneider | 1 | -2/+8 | |
Signed-off-by: Günther Deschner <gd@samba.org> | |||||
2011-03-29 | s3-spoolssd: Start the spoolss service correctly. | Andreas Schneider | 1 | -6/+16 | |
Signed-off-by: Günther Deschner <gd@samba.org> | |||||
2011-03-29 | s3-epmap: Make rpc_ep_setup_register an internal function. | Andreas Schneider | 2 | -5/+29 | |
Signed-off-by: Günther Deschner <gd@samba.org> | |||||
2011-03-27 | s3: Fix Coverity ID 2195: NO_EFFECT | Volker Lendecke | 1 | -1/+1 | |
level is unsigned |