~lefteris-nikoltsios/+junk/samba-lp1016895

« back to all changes in this revision

Viewing changes to source3/winbindd/winbindd_lookupsids.c

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2011-12-21 13:18:04 UTC
  • mfrom: (0.39.21 sid)
  • Revision ID: package-import@ubuntu.com-20111221131804-xtlr39wx6njehxxr
Tags: 2:3.6.1-3ubuntu1
* Merge from Debian testing.  Remaining changes:
  + debian/patches/VERSION.patch:
    - set SAMBA_VERSION_SUFFIX to Ubuntu.
  + debian/patches/error-trans.fix-276472:
    - Add the translation of Unix Error code -ENOTSUP to NT Error Code
    - NT_STATUS_NOT_SUPPORTED to prevent the Permission denied error.
  + debian/smb.conf:
    - add "(Samba, Ubuntu)" to server string.
    - comment out the default [homes] share, and add a comment about
      "valid users = %S" to show users how to restrict access to
      \\server\username to only username.
    - Set 'usershare allow guests', so that usershare admins are 
      allowed to create public shares in addition to authenticated
      ones.
    - add map to guest = Bad user, maps bad username to guest access.
  + debian/samba-common.config:
    - Do not change priority to high if dhclient3 is installed.
    - Use priority medium instead of high for the workgroup question.
  + debian/control:
    - Don't build against or suggest ctdb.
    - Add dependency on samba-common-bin to samba.
  + Add ufw integration:
    - Created debian/samba.ufw.profile
    - debian/rules, debian/samba.dirs, debian/samba.files: install
      profile
    - debian/control: have samba suggest ufw
  + Add apport hook:
    - Created debian/source_samba.py.
    - debian/rules, debian/samba.dirs, debian/samba-common-bin.files: install
  + Switch to upstart:
    - Add debian/samba.{nmbd,smbd}.upstart.
  + debian/samba.logrotate, debian/samba-common.dhcp, debian/samba.if-up:
    - Make them upstart compatible
  + debian/samba.postinst: 
    - Avoid scary pdbedit warnings on first import.
  + debian/samba-common.postinst: Add more informative error message for
    the case where smb.conf was manually deleted
  + debian/patches/fix-debuglevel-name-conflict.patch: don't use 'debug_level'
    as a global variable name in an NSS module 
  + Dropped:
    - debian/patches/error-trans.fix-276472
    - debian/patches/fix-debuglevel-name-conflict.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
   Unix SMB/CIFS implementation.
 
3
   async implementation of WINBINDD_LOOKUPSIDS
 
4
   Copyright (C) Volker Lendecke 2011
 
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 3 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, see <http://www.gnu.org/licenses/>.
 
18
*/
 
19
 
 
20
#include "includes.h"
 
21
#include "winbindd.h"
 
22
#include "../libcli/security/security.h"
 
23
 
 
24
struct winbindd_lookupsids_state {
 
25
        struct dom_sid *sids;
 
26
        uint32_t num_sids;
 
27
        struct lsa_RefDomainList *domains;
 
28
        struct lsa_TransNameArray *names;
 
29
};
 
30
 
 
31
static void winbindd_lookupsids_done(struct tevent_req *subreq);
 
32
 
 
33
struct tevent_req *winbindd_lookupsids_send(TALLOC_CTX *mem_ctx,
 
34
                                            struct tevent_context *ev,
 
35
                                           struct winbindd_cli_state *cli,
 
36
                                           struct winbindd_request *request)
 
37
{
 
38
        struct tevent_req *req, *subreq;
 
39
        struct winbindd_lookupsids_state *state;
 
40
 
 
41
        req = tevent_req_create(mem_ctx, &state,
 
42
                                struct winbindd_lookupsids_state);
 
43
        if (req == NULL) {
 
44
                return NULL;
 
45
        }
 
46
 
 
47
        DEBUG(3, ("lookupsids\n"));
 
48
 
 
49
        if (request->extra_len == 0) {
 
50
                tevent_req_done(req);
 
51
                return tevent_req_post(req, ev);
 
52
        }
 
53
        if (request->extra_data.data[request->extra_len-1] != '\0') {
 
54
                DEBUG(10, ("Got invalid sids list\n"));
 
55
                tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
 
56
                return tevent_req_post(req, ev);
 
57
        }
 
58
        if (!parse_sidlist(state, request->extra_data.data,
 
59
                           &state->sids, &state->num_sids)) {
 
60
                DEBUG(10, ("parse_sidlist failed\n"));
 
61
                tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
 
62
                return tevent_req_post(req, ev);
 
63
        }
 
64
        subreq = wb_lookupsids_send(state, ev, state->sids, state->num_sids);
 
65
        if (tevent_req_nomem(subreq, req)) {
 
66
                return tevent_req_post(req, ev);
 
67
        }
 
68
        tevent_req_set_callback(subreq, winbindd_lookupsids_done, req);
 
69
        return req;
 
70
}
 
71
 
 
72
static void winbindd_lookupsids_done(struct tevent_req *subreq)
 
73
{
 
74
        struct tevent_req *req = tevent_req_callback_data(
 
75
                subreq, struct tevent_req);
 
76
        struct winbindd_lookupsids_state *state = tevent_req_data(
 
77
                req, struct winbindd_lookupsids_state);
 
78
        NTSTATUS status;
 
79
 
 
80
        status = wb_lookupsids_recv(subreq, state, &state->domains,
 
81
                                    &state->names);
 
82
        TALLOC_FREE(subreq);
 
83
        if (tevent_req_nterror(req, status)) {
 
84
                return;
 
85
        }
 
86
        tevent_req_done(req);
 
87
}
 
88
 
 
89
NTSTATUS winbindd_lookupsids_recv(struct tevent_req *req,
 
90
                                  struct winbindd_response *response)
 
91
{
 
92
        struct winbindd_lookupsids_state *state = tevent_req_data(
 
93
                req, struct winbindd_lookupsids_state);
 
94
        NTSTATUS status;
 
95
        char *result;
 
96
        uint32_t i;
 
97
 
 
98
        if (tevent_req_is_nterror(req, &status)) {
 
99
                DEBUG(5, ("wb_lookupsids failed: %s\n", nt_errstr(status)));
 
100
                return status;
 
101
        }
 
102
 
 
103
        result = talloc_asprintf(response, "%d\n", (int)state->domains->count);
 
104
        if (result == NULL) {
 
105
                return NT_STATUS_NO_MEMORY;
 
106
        }
 
107
 
 
108
        for (i=0; i<state->domains->count; i++) {
 
109
                fstring sid_str;
 
110
 
 
111
                result = talloc_asprintf_append_buffer(
 
112
                        result, "%s %s\n",
 
113
                        sid_to_fstring(sid_str,
 
114
                                       state->domains->domains[i].sid),
 
115
                        state->domains->domains[i].name.string);
 
116
                if (result == NULL) {
 
117
                        return NT_STATUS_NO_MEMORY;
 
118
                }
 
119
        }
 
120
 
 
121
        result = talloc_asprintf_append_buffer(
 
122
                result, "%d\n", (int)state->names->count);
 
123
        if (result == NULL) {
 
124
                return NT_STATUS_NO_MEMORY;
 
125
        }
 
126
 
 
127
        for (i=0; i<state->names->count; i++) {
 
128
                struct lsa_TranslatedName *name;
 
129
 
 
130
                name = &state->names->names[i];
 
131
 
 
132
                result = talloc_asprintf_append_buffer(
 
133
                        result, "%d %d %s\n",
 
134
                        (int)name->sid_index, (int)name->sid_type,
 
135
                        name->name.string);
 
136
                if (result == NULL) {
 
137
                        return NT_STATUS_NO_MEMORY;
 
138
                }
 
139
        }
 
140
 
 
141
        response->extra_data.data = result;
 
142
        response->length += talloc_get_size(result);
 
143
        return NT_STATUS_OK;
 
144
}