summaryrefslogtreecommitdiff
path: root/cifs_idmap_sss.c
blob: 5be329458accf4676e2efc1fcb41fd83bba702a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
/*
    Authors:
        Benjamin Franzke <benjaminfranzke@googlemail.com>

    Copyright (C) 2013 Benjamin Franzke

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

/* TODO: Support well known SIDs as in samba's
 *        - librpc/idl/security.idl or
 *        - source4/rpc_server/lsa/lsa_lookup.c?
 */

/* TODO: Support of [all] samba's Unix SIDs:
 *         Users:  S-1-22-1-%UID
 *         Groups: S-1-22-2-%GID
 */

#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include <limits.h>
#include <stdarg.h>

#include <sss_idmap.h>
#include <sss_nss_idmap.h>
#include <cifsidmap.h>

#define WORLD_SID "S-1-1-0"

#ifdef DEBUG
#include <syslog.h>
#define debug(str, ...) \
	syslog(0, "%s: " str "\n", \
	       __FUNCTION__, ##__VA_ARGS__ )
#else
#define debug(...) do { } while(0)
#endif

struct sssd_ctx {
    struct sss_idmap_ctx *idmap;
    const char **errmsg;
};

#define ctx_set_error(ctx, error) \
    do { \
	*ctx->errmsg = error; \
        debug("%s", error ? error : ""); \
    } while (0);
     
int
cifs_idmap_init_plugin(void **handle, const char **errmsg)
{
    struct sssd_ctx *ctx;
    enum idmap_error_code err;
    
    ctx = malloc(sizeof *ctx);
    if (!ctx) {
        *errmsg = "Failed to allocate context";
        return -1;
    }
    ctx->errmsg = errmsg;
    ctx_set_error(ctx, NULL);

    err = sss_idmap_init(NULL, NULL, NULL, &ctx->idmap);
    if (err != IDMAP_SUCCESS) {
        ctx_set_error(ctx, idmap_error_string(err));
        return -1;
    }

    *handle = ctx;
    return 0;
}

void
cifs_idmap_exit_plugin(void *handle)
{
    struct sssd_ctx *ctx = handle;

    debug("exit");

    sss_idmap_free(ctx->idmap);

    free(ctx);
}

/* Test with `getcifsacl file` on client. */
int cifs_idmap_sid_to_str(void *handle, const struct cifs_sid *sid,
                          char **name)
{
    struct sssd_ctx *ctx = handle;
    enum idmap_error_code idmap_err;
    char *str_sid;
    enum sss_id_type id_type;
    int err;

    idmap_err = sss_idmap_bin_sid_to_sid(ctx->idmap,
                                         (uint8_t *) sid, sizeof(*sid),
                                         &str_sid);
    if (idmap_err != IDMAP_SUCCESS) {
        ctx_set_error(ctx, idmap_error_string(idmap_err));
        *name = NULL;
        return -1;
    }

    debug("sid: %s", str_sid);

    if (strcmp(str_sid, WORLD_SID) == 0) {
        *name = strdup("\\Everyone");
	if (!*name) {
            ctx_set_error(ctx, strerror(ENOMEM));
            return -ENOMEM;
        }
        return 0;
    }

    err = sss_nss_getnamebysid(str_sid, name, &id_type);
    if (err != 0)  {
        ctx_set_error(ctx, strerror(err));
        *name = NULL;
        return -err;
    }

    debug("name: %s", *name);

    return 0;
}

/* Test with setcifsacl -a */
int cifs_idmap_str_to_sid(void *handle, const char *name,
                          struct cifs_sid *sid)
{
    struct sssd_ctx *ctx = handle;
    enum idmap_error_code idmap_err;
    int err;
    enum sss_id_type id_type;
    char *str_sid = NULL;
    uint8_t *bin_sid = NULL;
    size_t length;
    int success = 0;

    debug("%s", name);

    if (strncmp("S-", name, 2) == 0) {
        debug("%s: name is sid string representation\n", __FUNCTION__);
	str_sid = strdup(name);
    } else {
        err = sss_nss_getsidbyname(name, &str_sid, &id_type);
        if (err != 0)  {
            ctx_set_error(ctx, strerror(err));
            return -err;
        }
    }

    // TODO: Map name==Everyone to WOLD_SID | 

    idmap_err = sss_idmap_sid_to_bin_sid(ctx->idmap,
                                         str_sid, &bin_sid, &length);
    if (idmap_err != IDMAP_SUCCESS) {
        ctx_set_error(ctx, idmap_error_string(idmap_err));
        success = -1;
        goto out;
    }
    if (length > sizeof(struct cifs_sid)) {
        debug("length: %zd", length);
        ctx_set_error(ctx, "incompatible internal sid length\n");
        success = -1;
        goto out;
    }

    memcpy(sid, bin_sid, length);

out:
    if (str_sid) 
        free(str_sid);
    if (bin_sid)
        free(bin_sid);

    return success;
}

int cifs_idmap_sids_to_ids(void *handle, const struct cifs_sid *sid,
                           const size_t num, struct cifs_uxid *cuxid)
{
    struct sssd_ctx *ctx = handle;
    enum idmap_error_code idmap_err;
    int err;
    int success = -1;
    int i;

    debug("num: %zd", num);

    if (num > UINT_MAX) {
         ctx_set_error(ctx, "num is too large.");
         return -EINVAL;
    }

    for (i = 0; i < num; ++i) {
        char *str_sid;
        enum sss_id_type id_type;

        idmap_err = sss_idmap_bin_sid_to_sid(ctx->idmap, (uint8_t *) &sid[i],
                                             sizeof(sid[i]), &str_sid);
        if (idmap_err != IDMAP_SUCCESS) {
            ctx_set_error(ctx, idmap_error_string(idmap_err));
            continue;
        }
	

        err = sss_nss_getidbysid(str_sid, (uint32_t *)&cuxid[i].id.uid, &id_type);
        if (err != 0)  {
            ctx_set_error(ctx, strerror(err));
            cuxid[i].type = CIFS_UXID_TYPE_UNKNOWN;
            if (strcmp(str_sid, "S-1-22-1-0") == 0) {
                cuxid[i].id.uid = 0;
                cuxid[i].type = CIFS_UXID_TYPE_UID;
            } else if (strcmp(str_sid, "S-1-22-2-0") == 0) {
                cuxid[i].id.uid = 0;
                cuxid[i].type = CIFS_UXID_TYPE_GID;
            } else {
#if 0
                cuxid[i].id.uid = 99;
                cuxid[i].type = CIFS_UXID_TYPE_BOTH;
#else
                continue;
#endif
            }
    	    debug("setting uid of %s to %d", str_sid, cuxid[i].id.uid);
        }
    	debug("str_sid: %s, id: %d\n", str_sid, cuxid[i].id.uid);
                        
        success = 0;

        switch (id_type) {
        case SSS_ID_TYPE_NOT_SPECIFIED:
            cuxid[i].type = CIFS_UXID_TYPE_UNKNOWN;
            break;
        case SSS_ID_TYPE_UID:
            cuxid[i].type = CIFS_UXID_TYPE_UID;
            break;
        case SSS_ID_TYPE_GID:
            cuxid[i].type = CIFS_UXID_TYPE_GID;
            break;
        case SSS_ID_TYPE_BOTH:
            cuxid[i].type = CIFS_UXID_TYPE_BOTH;
            break;
        }
    }

    return success;
}


int cifs_idmap_ids_to_sids(void *handle, const struct cifs_uxid *cuxid,
                           const size_t num, struct cifs_sid *sid)
{
    struct sssd_ctx *ctx = handle;
    enum idmap_error_code idmap_err;
    int err;
    int success = -1;
    int i;

    debug("num ids: %zd", num);

    for (i = 0; i < num; ++i) {
        char *str_sid;
        enum sss_id_type id_type;
        uint8_t *bin_sid = NULL;
        size_t length;

        err = sss_nss_getsidbyid((uint32_t)cuxid[i].id.uid, &str_sid, &id_type);
        if (err != 0)  {
            ctx_set_error(ctx, strerror(err));
            sid[i].revision = 0;
            continue;
        }
        
        idmap_err = sss_idmap_sid_to_bin_sid(ctx->idmap, str_sid, &bin_sid, &length);
        free(str_sid);
        if (idmap_err != IDMAP_SUCCESS) {
            ctx_set_error(ctx, idmap_error_string(idmap_err));
            sid[i].revision = 0;
            continue;
        }
        if (length > sizeof(struct cifs_sid)) {
            debug("length: %zd", length);
            ctx_set_error(ctx, "incompatible internal sid length\n");
            success = -1;
            continue;
        }

        memcpy(&sid[i], bin_sid, sizeof(sid[i]));
        free(bin_sid);
                        
        success = 0;
    }

    return success;
}