summaryrefslogtreecommitdiffstats
path: root/src/util/sss_nss.c
blob: 54ff40acfa9d27ebdd3dcc96fc2933a50257493c (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
/*
   SSSD

   Utility functions related to ID information

   Copyright (C) Jan Zeleny <jzeleny@redhat.com> 2012

   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/>.
*/

#include "util/util.h"
#include "util/sss_nss.h"
#include "db/sysdb.h"

char *expand_homedir_template(TALLOC_CTX *mem_ctx,
                              const char *template,
                              bool case_sensitive,
                              struct sss_nss_homedir_ctx *homedir_ctx)
{
    char *copy;
    char *p;
    char *n;
    char *result = NULL;
    char *res = NULL;
    TALLOC_CTX *tmp_ctx = NULL;
    const char *orig = NULL;
    char *username = NULL;

    if (template == NULL) {
        DEBUG(SSSDBG_CRIT_FAILURE, "Missing template.\n");
        return NULL;
    }

    if (homedir_ctx == NULL) {
        DEBUG(SSSDBG_CRIT_FAILURE, "Missing home directory data.\n");
        return NULL;
    }

    tmp_ctx = talloc_new(NULL);
    if (!tmp_ctx) return NULL;

    copy = talloc_strdup(tmp_ctx, template);
    if (copy == NULL) {
        DEBUG(SSSDBG_CRIT_FAILURE, "talloc_strdup failed.\n");
        goto done;
    }

    result = talloc_strdup(tmp_ctx, "");
    if (result == NULL) {
        DEBUG(SSSDBG_CRIT_FAILURE, "talloc_strdup failed.\n");
        goto done;
    }

    p = copy;
    while ( (n = strchr(p, '%')) != NULL) {
        *n = '\0';
        n++;
        if ( *n == '\0' ) {
            DEBUG(SSSDBG_CRIT_FAILURE, "format error, single %% at the end of "
                                        "the template.\n");
            goto done;
        }
        switch( *n ) {
            case 'u':
                if (homedir_ctx->username == NULL) {
                    DEBUG(SSSDBG_CRIT_FAILURE,
                          "Cannot expand user name template because user name "
                          "is empty.\n");
                    goto done;
                }
                username = sss_output_name(tmp_ctx, homedir_ctx->username,
                                           case_sensitive, 0);
                if (username == NULL) {
                    goto done;
                }

                result = talloc_asprintf_append(result, "%s%s", p, username);
                talloc_free(username);
                break;

            case 'l':
                if (homedir_ctx->username == NULL) {
                    DEBUG(SSSDBG_CRIT_FAILURE,
                          "Cannot expand first letter of user name template "
                          "because user name is empty.\n");
                    goto done;
                }
                username = sss_output_name(tmp_ctx, homedir_ctx->username,
                                           case_sensitive, 0);
                if (username == NULL) {
                    goto done;
                }

                result = talloc_asprintf_append(result, "%s%c", p, username[0]);
                talloc_free(username);
                break;

            case 'U':
                if (homedir_ctx->uid == 0) {
                    DEBUG(SSSDBG_CRIT_FAILURE, "Cannot expand uid template "
                                                "because uid is invalid.\n");
                    goto done;
                }
                result = talloc_asprintf_append(result, "%s%d", p,
                                                homedir_ctx->uid);
                break;

            case 'd':
                if (homedir_ctx->domain == NULL) {
                    DEBUG(SSSDBG_CRIT_FAILURE, "Cannot expand domain name "
                                                "template because domain name "
                                                "is empty.\n");
                    goto done;
                }
                result = talloc_asprintf_append(result, "%s%s", p,
                                                homedir_ctx->domain);
                break;

            case 'f':
                if (homedir_ctx->domain == NULL
                        || homedir_ctx->username == NULL) {
                    DEBUG(SSSDBG_CRIT_FAILURE, "Cannot expand fully qualified "
                                                "name template because domain "
                                                "or user name is empty.\n");
                    goto done;
                }
                username = sss_output_name(tmp_ctx, homedir_ctx->username,
                                           case_sensitive, 0);
                if (username == NULL) {
                    goto done;
                }

                result = talloc_asprintf_append(result, "%s%s@%s", p,
                                                username, homedir_ctx->domain);
                talloc_free(username);
                break;

            case 'o':
                if (homedir_ctx->original == NULL) {
                    DEBUG(SSSDBG_CRIT_FAILURE,
                          "Original home directory for %s is not available, "
                           "using empty string\n", homedir_ctx->username);
                    orig = "";
                } else {
                    orig = homedir_ctx->original;
                }
                result = talloc_asprintf_append(result, "%s%s", p, orig);
                break;

            case 'F':
                if (homedir_ctx->flatname == NULL) {
                    DEBUG(SSSDBG_CRIT_FAILURE, "Cannot expand domain name "
                                                "template because domain flat "
                                                "name is empty.\n");
                    goto done;
                }
                result = talloc_asprintf_append(result, "%s%s", p,
                                                homedir_ctx->flatname);
                break;

            case 'H':
                if (homedir_ctx->config_homedir_substr == NULL) {
                    DEBUG(SSSDBG_CRIT_FAILURE,
                          "Cannot expand home directory substring template "
                          "substring is empty.\n");
                    goto done;
                }
                result = talloc_asprintf_append(result, "%s%s", p,
                                           homedir_ctx->config_homedir_substr);
                break;

            case 'P':
                if (homedir_ctx->upn == NULL) {
                    DEBUG(SSSDBG_CRIT_FAILURE,
                          "Cannot expand user principal name template "
                          "string is empty.\n");
                    goto done;
                }
                result = talloc_asprintf_append(result, "%s%s", p,
                                                homedir_ctx->upn);
                break;

            case '%':
                result = talloc_asprintf_append(result, "%s%%", p);
                break;

            default:
                DEBUG(SSSDBG_CRIT_FAILURE, "format error, unknown template "
                                            "[%%%c].\n", *n);
                goto done;
        }

        if (result == NULL) {
            DEBUG(SSSDBG_CRIT_FAILURE, "talloc_asprintf_append failed.\n");
            goto done;
        }

        p = n + 1;
    }

    result = talloc_asprintf_append(result, "%s", p);
    if (result == NULL) {
        DEBUG(SSSDBG_CRIT_FAILURE, "talloc_asprintf_append failed.\n");
        goto done;
    }

    res = talloc_move(mem_ctx, &result);
done:
    talloc_zfree(tmp_ctx);
    return res;
}

const char *
sss_nss_get_name_from_msg(struct sss_domain_info *domain,
                          struct ldb_message *msg)
{
    const char *name;

    /* If domain has a view associated we return overridden name
     * if possible. */
    if (DOM_HAS_VIEWS(domain)) {
        name = ldb_msg_find_attr_as_string(msg, OVERRIDE_PREFIX SYSDB_NAME,
                                           NULL);
        if (name != NULL) {
            return name;
        }
    }

    /* Otherwise we try to return name override from
     * Default Truest View for trusted users. */
    name = ldb_msg_find_attr_as_string(msg, SYSDB_DEFAULT_OVERRIDE_NAME, NULL);
    if (name != NULL) {
        return name;
    }

    /* If no override is found we return the original name. */
    return ldb_msg_find_attr_as_string(msg, SYSDB_NAME, NULL);
}

int sss_nss_output_name(TALLOC_CTX *mem_ctx,
                        struct sss_domain_info *domain,
                        const char *name,
                        char override_space,
                        char **_output_name)
{
    TALLOC_CTX *tmp_ctx = NULL;
    errno_t ret;
    char *output_name;

    tmp_ctx = talloc_new(NULL);
    if (tmp_ctx == NULL) {
        ret = ENOMEM;
        goto done;
    }

    output_name = sss_output_name(tmp_ctx, name, domain->case_preserve,
                                  override_space);
    if (output_name == NULL) {
        ret = EIO;
        goto done;
    }

    if (domain->fqnames) {
        output_name = sss_tc_fqname(tmp_ctx, domain->names,
                                    domain, output_name);
        if (output_name == NULL) {
            DEBUG(SSSDBG_CRIT_FAILURE, "sss_tc_fqname failed\n");
            ret = EIO;
            goto done;
        }
    }

    *_output_name = talloc_steal(mem_ctx, output_name);
    ret = EOK;
done:
    talloc_zfree(tmp_ctx);
    return ret;
}