summaryrefslogtreecommitdiffstats
path: root/src/defaults.c
blob: 617cb776eca205f1087cd60b1cfa3b7a34b252ff (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
/*
 * Copyright 2008 Red Hat, Inc.
 *
 * 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; version 2 of the License.
 *
 * 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, write to the
 *
 *   Free Software Foundation, Inc.
 *   59 Temple Place, Suite 330
 *   Boston, MA 02111-1307 USA
 *
 */

#ifdef HAVE_CONFIG_H
#include "../config.h"
#endif

#include <string.h>

#define DEFAULT_ENTRY_FILTER "(&(nisMapName=%m)(objectClass=nisObject))"
#define DEFAULT_KEY_FORMAT "%{cn}"
#define DEFAULT_VALUE_FORMAT "%{nisMapEntry}"

static struct configuration {
	char *map, *filter, *key_format, *value_format;
} config[] = {
	{"passwd.byname",
	 "(objectClass=posixAccount)",
	 "%{uid}",
	 "%{uid}:%regmatch(\"userPassword\",\"^{CRYPT}.............*\",\"*\"):%{uidNumber}:%{gidNumber}:%{gecos:-%{cn}}:%{homeDirectory:-/}:%{loginShell:-}"},
	{"passwd.bynumber",
	 "(objectClass=posixAccount)",
	 "%{uidNumber}",
	 "%{uid}:%regmatch(\"userPassword\",\"^{CRYPT}.............*\",\"*\"):%{uidNumber}:%{gidNumber}:%{gecos:-%{cn}}:%{homeDirectory:-/}:%{loginShell:-}"},
	{"group.byname",
	 "(objectClass=posixGroup)",
	 "%{cn}",
	 "%{cn}:%regmatch(\"userPassword\",\"^{CRYPT}.............*\",\"*\"):%{gidNumber}:%merge(\",\",\"%list(\\\",\\\",\\\"memberUid\\\")\",\"%deref(\\\",\\\",\\\"uniqueMember\\\",\\\"uid\\\")\")"},
	{"group.bynumber",
	 "(objectClass=posixGroup)",
	 "%{gidNumber}",
	 "%{cn}:%regmatch(\"userPassword\",\"^{CRYPT}.............*\",\"*\"):%{gidNumber}:%merge(\",\",\"%list(\\\",\\\",\\\"memberUid\\\")\",\"%deref(\\\",\\\",\\\"uniqueMember\\\",\\\"uid\\\")\")"},
};

void
defaults_get_map_config(const char *mapname,
			const char **filter,
			const char **key_format,
			const char **value_format)
{
	unsigned int i;
	*filter = DEFAULT_ENTRY_FILTER;
	*key_format = DEFAULT_KEY_FORMAT;
	*value_format = DEFAULT_VALUE_FORMAT;
	for (i = 0; i < sizeof(config) / sizeof(config[0]); i++) {
		if (strcmp(mapname, config[i].map) == 0) {
			*filter = config[i].filter;
			*key_format = config[i].key_format;
			*value_format = config[i].value_format;
			break;
		}
	}
}