Ignore:
Timestamp:
Nov 27, 2012, 4:43:17 PM (13 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: updated trunk to 3.6.0

Location:
trunk/server
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/server

  • trunk/server/source3/winbindd/winbindd_async.c

    r414 r745  
    2323#include "includes.h"
    2424#include "winbindd.h"
     25#include "../libcli/security/security.h"
    2526
    2627#undef DBGC_CLASS
    2728#define DBGC_CLASS DBGC_WINBIND
    28 
    29 bool print_sidlist(TALLOC_CTX *mem_ctx, const DOM_SID *sids,
    30                    size_t num_sids, char **result, ssize_t *len)
    31 {
    32         size_t i;
    33         size_t buflen = 0;
    34 
    35         *len = 0;
    36         *result = NULL;
    37         for (i=0; i<num_sids; i++) {
    38                 fstring tmp;
    39                 sprintf_append(mem_ctx, result, len, &buflen,
    40                                "%s\n", sid_to_fstring(tmp, &sids[i]));
    41         }
    42 
    43         if ((num_sids != 0) && (*result == NULL)) {
    44                 return False;
    45         }
    46 
    47         return True;
    48 }
    49 
    50 bool parse_sidlist(TALLOC_CTX *mem_ctx, const char *sidstr,
    51                    DOM_SID **sids, size_t *num_sids)
    52 {
    53         const char *p, *q;
    54 
    55         p = sidstr;
    56         if (p == NULL)
    57                 return False;
    58 
    59         while (p[0] != '\0') {
    60                 fstring tmp;
    61                 size_t sidlen;
    62                 DOM_SID sid;
    63                 q = strchr(p, '\n');
    64                 if (q == NULL) {
    65                         DEBUG(0, ("Got invalid sidstr: %s\n", p));
    66                         return False;
    67                 }
    68                 sidlen = PTR_DIFF(q, p);
    69                 if (sidlen >= sizeof(tmp)-1) {
    70                         return false;
    71                 }
    72                 memcpy(tmp, p, sidlen);
    73                 tmp[sidlen] = '\0';
    74                 q += 1;
    75                 if (!string_to_sid(&sid, tmp)) {
    76                         DEBUG(0, ("Could not parse sid %s\n", p));
    77                         return False;
    78                 }
    79                 if (!NT_STATUS_IS_OK(add_sid_to_array(mem_ctx, &sid, sids,
    80                                                       num_sids)))
    81                 {
    82                         return False;
    83                 }
    84                 p = q;
    85         }
    86         return True;
    87 }
    8829
    8930enum winbindd_result winbindd_dual_ping(struct winbindd_domain *domain,
Note: See TracChangeset for help on using the changeset viewer.