LCOV - code coverage report
Current view: top level - source3/winbindd - winbindd_lookupsids.c (source / functions) Hit Total Coverage
Test: coverage report for vadcx-master-patch-75612 fe003de8 Lines: 12 65 18.5 %
Date: 2024-02-29 22:57:05 Functions: 2 3 66.7 %

          Line data    Source code
       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           4 : 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           0 :         struct tevent_req *req, *subreq;
      39           0 :         struct winbindd_lookupsids_state *state;
      40             : 
      41           4 :         req = tevent_req_create(mem_ctx, &state,
      42             :                                 struct winbindd_lookupsids_state);
      43           4 :         if (req == NULL) {
      44           0 :                 return NULL;
      45             :         }
      46             : 
      47           4 :         DEBUG(3, ("lookupsids\n"));
      48             : 
      49           4 :         if (request->extra_len == 0) {
      50           4 :                 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
      51           4 :                 return tevent_req_post(req, ev);
      52             :         }
      53           0 :         if (request->extra_data.data[request->extra_len-1] != '\0') {
      54           0 :                 DEBUG(10, ("Got invalid sids list\n"));
      55           0 :                 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
      56           0 :                 return tevent_req_post(req, ev);
      57             :         }
      58           0 :         if (!parse_sidlist(state, request->extra_data.data,
      59           0 :                            &state->sids, &state->num_sids)) {
      60           0 :                 DEBUG(10, ("parse_sidlist failed\n"));
      61           0 :                 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
      62           0 :                 return tevent_req_post(req, ev);
      63             :         }
      64           0 :         subreq = wb_lookupsids_send(state, ev, state->sids, state->num_sids);
      65           0 :         if (tevent_req_nomem(subreq, req)) {
      66           0 :                 return tevent_req_post(req, ev);
      67             :         }
      68           0 :         tevent_req_set_callback(subreq, winbindd_lookupsids_done, req);
      69           0 :         return req;
      70             : }
      71             : 
      72           0 : static void winbindd_lookupsids_done(struct tevent_req *subreq)
      73             : {
      74           0 :         struct tevent_req *req = tevent_req_callback_data(
      75             :                 subreq, struct tevent_req);
      76           0 :         struct winbindd_lookupsids_state *state = tevent_req_data(
      77             :                 req, struct winbindd_lookupsids_state);
      78           0 :         NTSTATUS status;
      79             : 
      80           0 :         status = wb_lookupsids_recv(subreq, state, &state->domains,
      81             :                                     &state->names);
      82           0 :         TALLOC_FREE(subreq);
      83           0 :         if (tevent_req_nterror(req, status)) {
      84           0 :                 return;
      85             :         }
      86           0 :         tevent_req_done(req);
      87             : }
      88             : 
      89           4 : NTSTATUS winbindd_lookupsids_recv(struct tevent_req *req,
      90             :                                   struct winbindd_response *response)
      91             : {
      92           4 :         struct winbindd_lookupsids_state *state = tevent_req_data(
      93             :                 req, struct winbindd_lookupsids_state);
      94           0 :         NTSTATUS status;
      95           0 :         char *result;
      96           0 :         uint32_t i;
      97             : 
      98           4 :         if (tevent_req_is_nterror(req, &status)) {
      99           4 :                 DEBUG(5, ("wb_lookupsids failed: %s\n", nt_errstr(status)));
     100           4 :                 return status;
     101             :         }
     102             : 
     103           0 :         result = talloc_asprintf(response, "%d\n", (int)state->domains->count);
     104           0 :         if (result == NULL) {
     105           0 :                 return NT_STATUS_NO_MEMORY;
     106             :         }
     107             : 
     108           0 :         for (i=0; i<state->domains->count; i++) {
     109           0 :                 struct dom_sid_buf sid_str;
     110             : 
     111           0 :                 result = talloc_asprintf_append_buffer(
     112             :                         result, "%s %s\n",
     113           0 :                         dom_sid_str_buf(state->domains->domains[i].sid,
     114             :                                         &sid_str),
     115           0 :                         state->domains->domains[i].name.string);
     116           0 :                 if (result == NULL) {
     117           0 :                         return NT_STATUS_NO_MEMORY;
     118             :                 }
     119             :         }
     120             : 
     121           0 :         result = talloc_asprintf_append_buffer(
     122           0 :                 result, "%d\n", (int)state->names->count);
     123           0 :         if (result == NULL) {
     124           0 :                 return NT_STATUS_NO_MEMORY;
     125             :         }
     126             : 
     127           0 :         for (i=0; i<state->names->count; i++) {
     128           0 :                 struct lsa_TranslatedName *name;
     129             : 
     130           0 :                 name = &state->names->names[i];
     131             : 
     132           0 :                 result = talloc_asprintf_append_buffer(
     133             :                         result, "%d %d %s\n",
     134           0 :                         (int)name->sid_index, (int)name->sid_type,
     135             :                         name->name.string);
     136           0 :                 if (result == NULL) {
     137           0 :                         return NT_STATUS_NO_MEMORY;
     138             :                 }
     139             :         }
     140             : 
     141           0 :         response->extra_data.data = result;
     142           0 :         response->length += talloc_get_size(result);
     143           0 :         return NT_STATUS_OK;
     144             : }

Generated by: LCOV version 1.14