⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 config.c

📁 OpenLdap是LDAP的开源项目
💻 C
📖 第 1 页 / 共 2 页
字号:
			entry_free( bi->sql_baseObject );		}			switch ( argc ) {		case 1:			return create_baseObject( be, fname, lineno );		case 2:			return read_baseObject( be, argv[ 1 ] );		default:			Debug( LDAP_DEBUG_TRACE,				"<==backsql_db_config (%s line %d): "				"trailing values "				"in \"baseObject\" directive?\n",				fname, lineno, 0 );			return 1;		}	} else if ( !strcasecmp( argv[ 0 ], "sqllayer" ) ) {		if ( backsql_api_config( bi, argv[ 1 ], argc - 2, &argv[ 2 ] ) )		{			Debug( LDAP_DEBUG_TRACE,				"<==backsql_db_config (%s line %d): "				"unable to load sqllayer \"%s\"\n",				fname, lineno, argv[ 1 ] );			return 1;		}	} else if ( !strcasecmp( argv[ 0 ], "id_query" ) ) {		if ( argc < 2 ) {			Debug( LDAP_DEBUG_TRACE, 				"<==backsql_db_config (%s line %d): "				"missing SQL condition "				"in \"id_query\" directive\n",				fname, lineno, 0 );			return 1;		}		bi->sql_id_query = ch_strdup( argv[ 1 ] );		Debug( LDAP_DEBUG_TRACE, "<==backsql_db_config(): "			"id_query=%s\n", bi->sql_id_query, 0, 0 );	} else if ( !strcasecmp( argv[ 0 ], "use_subtree_shortcut" ) ) {		if ( argc < 2 ) {			Debug( LDAP_DEBUG_TRACE,				"<==backsql_db_config (%s line %d): "				"missing { yes | no }"				"in \"use_subtree_shortcut\" directive\n",				fname, lineno, 0 );			return 1;		}		if ( strcasecmp( argv[ 1 ], "yes" ) == 0 ) {			bi->sql_flags |= BSQLF_USE_SUBTREE_SHORTCUT;		} else if ( strcasecmp( argv[ 1 ], "no" ) == 0 ) {			bi->sql_flags &= ~BSQLF_USE_SUBTREE_SHORTCUT;		} else {			Debug( LDAP_DEBUG_TRACE,				"<==backsql_db_config (%s line %d): "				"\"use_subtree_shortcut\" directive arg "				"must be \"yes\" or \"no\"\n",				fname, lineno, 0 );			return 1;		}		Debug( LDAP_DEBUG_TRACE, "<==backsql_db_config(): "			"use_subtree_shortcut=%s\n", 			BACKSQL_USE_SUBTREE_SHORTCUT( bi ) ? "yes" : "no",			0, 0 );	} else if ( !strcasecmp( argv[ 0 ], "fetch_all_attrs" ) ) {		if ( argc < 2 ) {			Debug( LDAP_DEBUG_TRACE,				"<==backsql_db_config (%s line %d): "				"missing { yes | no }"				"in \"fetch_all_attrs\" directive\n",				fname, lineno, 0 );			return 1;		}		if ( strcasecmp( argv[ 1 ], "yes" ) == 0 ) {			bi->sql_flags |= BSQLF_FETCH_ALL_ATTRS;		} else if ( strcasecmp( argv[ 1 ], "no" ) == 0 ) {			bi->sql_flags &= ~BSQLF_FETCH_ALL_ATTRS;		} else {			Debug( LDAP_DEBUG_TRACE,				"<==backsql_db_config (%s line %d): "				"\"fetch_all_attrs\" directive arg "				"must be \"yes\" or \"no\"\n",				fname, lineno, 0 );			return 1;		}		Debug( LDAP_DEBUG_TRACE, "<==backsql_db_config(): "			"fetch_all_attrs=%s\n", 			BACKSQL_FETCH_ALL_ATTRS( bi ) ? "yes" : "no",			0, 0 );	} else if ( !strcasecmp( argv[ 0 ], "fetch_attrs" ) ) {		char	*str, *s, *next;		char	delimstr[] = ",";		if ( argc < 2 ) {			Debug( LDAP_DEBUG_TRACE,				"<==backsql_db_config (%s line %d): "				"missing <attrlist>"				"in \"fetch_all_attrs <attrlist>\" directive\n",				fname, lineno, 0 );			return 1;		}		str = ch_strdup( argv[ 1 ] );		for ( s = ldap_pvt_strtok( str, delimstr, &next );				s != NULL;				s = ldap_pvt_strtok( NULL, delimstr, &next ) )		{			if ( strlen( s ) == 1 ) {				if ( *s == '*' ) {					bi->sql_flags |= BSQLF_FETCH_ALL_USERATTRS;					argv[ 1 ][ s - str ] = ',';				} else if ( *s == '+' ) {					bi->sql_flags |= BSQLF_FETCH_ALL_OPATTRS;					argv[ 1 ][ s - str ] = ',';				}			}		}		ch_free( str );		bi->sql_anlist = str2anlist( bi->sql_anlist, argv[ 1 ], delimstr );		if ( bi->sql_anlist == NULL ) {			return -1;		}	} else if ( !strcasecmp( argv[ 0 ], "check_schema" ) ) {		if ( argc != 2 ) {			Debug( LDAP_DEBUG_TRACE,				"<==backsql_db_config (%s line %d): "				"missing { yes | no }"				"in \"check_schema\" directive\n",				fname, lineno, 0 );			return 1;		}		if ( strcasecmp( argv[ 1 ], "yes" ) == 0 ) {			bi->sql_flags |= BSQLF_CHECK_SCHEMA;		} else if ( strcasecmp( argv[ 1 ], "no" ) == 0 ) {			bi->sql_flags &= ~BSQLF_CHECK_SCHEMA;		} else {			Debug( LDAP_DEBUG_TRACE,				"<==backsql_db_config (%s line %d): "				"\"check_schema\" directive arg "				"must be \"yes\" or \"no\"\n",				fname, lineno, 0 );			return 1;		}		Debug( LDAP_DEBUG_TRACE, "<==backsql_db_config(): "			"check_schema=%s\n", 			BACKSQL_CHECK_SCHEMA( bi ) ? "yes" : "no",			0, 0 );	} else if ( !strcasecmp( argv[ 0 ], "aliasing_keyword" ) ) {		if ( argc != 2 ) {			Debug( LDAP_DEBUG_TRACE,				"<==backsql_db_config (%s line %d): "				"missing arg "				"in \"aliasing_keyword <string>\" directive\n",				fname, lineno, 0 );			return 1;		}		if ( ! BER_BVISNULL( &bi->sql_aliasing ) ) {			ch_free( bi->sql_aliasing.bv_val );		}		ber_str2bv( argv[ 1 ], strlen( argv[ 1 ] ) + 1, 1,			&bi->sql_aliasing );		/* add a trailing space... */		bi->sql_aliasing.bv_val[ bi->sql_aliasing.bv_len - 1] = ' ';	} else if ( !strcasecmp( argv[ 0 ], "aliasing_quote" ) ) {		if ( argc != 2 ) {			Debug( LDAP_DEBUG_TRACE,				"<==backsql_db_config (%s line %d): "				"missing arg "				"in \"aliasing_quote <string>\" directive\n",				fname, lineno, 0 );			return 1;		}		if ( ! BER_BVISNULL( &bi->sql_aliasing_quote ) ) {			ch_free( bi->sql_aliasing_quote.bv_val );		}		ber_str2bv( argv[ 1 ], 0, 1, &bi->sql_aliasing_quote );	} else {		return SLAP_CONF_UNKNOWN;	}	return 0;}/* * Read the entries specified in fname and merge the attributes * to the user defined baseObject entry. Note that if we find any errors * what so ever, we will discard the entire entries, print an * error message and return. */static intread_baseObject( 	BackendDB	*be,	const char	*fname ){	backsql_info 	*bi = (backsql_info *)be->be_private;	LDIFFP		*fp;	int		rc = 0, lineno = 0, lmax = 0;	char		*buf = NULL;	assert( fname != NULL );	fp = ldif_open( fname, "r" );	if ( fp == NULL ) {		Debug( LDAP_DEBUG_ANY,			"could not open back-sql baseObject "			"attr file \"%s\" - absolute path?\n",			fname, 0, 0 );		perror( fname );		return LDAP_OTHER;	}	bi->sql_baseObject = (Entry *) SLAP_CALLOC( 1, sizeof(Entry) );	if ( bi->sql_baseObject == NULL ) {		Debug( LDAP_DEBUG_ANY,			"read_baseObject_file: SLAP_CALLOC failed", 0, 0, 0 );		ldif_close( fp );		return LDAP_NO_MEMORY;	}	bi->sql_baseObject->e_name = be->be_suffix[0];	bi->sql_baseObject->e_nname = be->be_nsuffix[0];	bi->sql_baseObject->e_attrs = NULL;	while ( ldif_read_record( fp, &lineno, &buf, &lmax ) ) {		Entry		*e = str2entry( buf );		Attribute	*a;		if( e == NULL ) {			fprintf( stderr, "back-sql baseObject: "					"could not parse entry (line=%d)\n",					lineno );			rc = LDAP_OTHER;			break;		}		/* make sure the DN is the database's suffix */		if ( !be_issuffix( be, &e->e_nname ) ) {			fprintf( stderr,				"back-sql: invalid baseObject - "				"dn=\"%s\" (line=%d)\n",				e->e_name.bv_val, lineno );			entry_free( e );			rc = EXIT_FAILURE;			break;		}		/*		 * we found a valid entry, so walk thru all the attributes in the		 * entry, and add each attribute type and description to baseObject		 */		for ( a = e->e_attrs; a != NULL; a = a->a_next ) {			if ( attr_merge( bi->sql_baseObject, a->a_desc,						a->a_vals,						( a->a_nvals == a->a_vals ) ?						NULL : a->a_nvals ) )			{				rc = LDAP_OTHER;				break;			}		}		entry_free( e );		if ( rc ) {			break;		}	}	if ( rc ) {		entry_free( bi->sql_baseObject );		bi->sql_baseObject = NULL;	}	ch_free( buf );	ldif_close( fp );	Debug( LDAP_DEBUG_CONFIG, "back-sql baseObject file \"%s\" read.\n",			fname, 0, 0 );	return rc;}static intcreate_baseObject(	BackendDB	*be,	const char	*fname,	int		lineno ){	backsql_info 	*bi = (backsql_info *)be->be_private;	LDAPRDN		rdn;	char		*p;	int		rc, iAVA;	char		buf[1024];	snprintf( buf, sizeof(buf),			"dn: %s\n"			"objectClass: extensibleObject\n"			"description: builtin baseObject for back-sql\n"			"description: all entries mapped "			"in the \"ldap_entries\" table\n"			"description: must have "			"\"" BACKSQL_BASEOBJECT_IDSTR "\" "			"in the \"parent\" column",			be->be_suffix[0].bv_val );	bi->sql_baseObject = str2entry( buf );	if ( bi->sql_baseObject == NULL ) {		Debug( LDAP_DEBUG_TRACE,			"<==backsql_db_config (%s line %d): "			"unable to parse baseObject entry\n",			fname, lineno, 0 );		return 1;	}	if ( BER_BVISEMPTY( &be->be_suffix[ 0 ] ) ) {		return 0;	}	rc = ldap_bv2rdn( &be->be_suffix[ 0 ], &rdn, (char **)&p,			LDAP_DN_FORMAT_LDAP );	if ( rc != LDAP_SUCCESS ) {		snprintf( buf, sizeof(buf),			"unable to extract RDN "			"from baseObject DN \"%s\" (%d: %s)",			be->be_suffix[ 0 ].bv_val,			rc, ldap_err2string( rc ) );		Debug( LDAP_DEBUG_TRACE,			"<==backsql_db_config (%s line %d): %s\n",			fname, lineno, buf );		return 1;	}	for ( iAVA = 0; rdn[ iAVA ]; iAVA++ ) {		LDAPAVA				*ava = rdn[ iAVA ];		AttributeDescription		*ad = NULL;		slap_syntax_transform_func	*transf = NULL;		struct berval			bv = BER_BVNULL;		const char			*text = NULL;		assert( ava != NULL );		rc = slap_bv2ad( &ava->la_attr, &ad, &text );		if ( rc != LDAP_SUCCESS ) {			snprintf( buf, sizeof(buf),				"AttributeDescription of naming "				"attribute #%d from baseObject "				"DN \"%s\": %d: %s",				iAVA, be->be_suffix[ 0 ].bv_val,				rc, ldap_err2string( rc ) );			Debug( LDAP_DEBUG_TRACE,				"<==backsql_db_config (%s line %d): %s\n",				fname, lineno, buf );			return 1;		}				transf = ad->ad_type->sat_syntax->ssyn_pretty;		if ( transf ) {			/*	 		 * transform value by pretty function			 *	if value is empty, use empty_bv			 */			rc = ( *transf )( ad->ad_type->sat_syntax,				ava->la_value.bv_len					? &ava->la_value					: (struct berval *) &slap_empty_bv,				&bv, NULL );				if ( rc != LDAP_SUCCESS ) {				snprintf( buf, sizeof(buf),					"prettying of attribute #%d "					"from baseObject "					"DN \"%s\" failed: %d: %s",					iAVA, be->be_suffix[ 0 ].bv_val,					rc, ldap_err2string( rc ) );				Debug( LDAP_DEBUG_TRACE,					"<==backsql_db_config (%s line %d): "					"%s\n",					fname, lineno, buf );				return 1;			}		}		if ( !BER_BVISNULL( &bv ) ) {			if ( ava->la_flags & LDAP_AVA_FREE_VALUE ) {				ber_memfree( ava->la_value.bv_val );			}			ava->la_value = bv;			ava->la_flags |= LDAP_AVA_FREE_VALUE;		}		attr_merge_normalize_one( bi->sql_baseObject,				ad, &ava->la_value, NULL );	}	ldap_rdnfree( rdn );	return 0;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -