File: tclLdapBind.c

package info (click to toggle)
libtcl-ldap 1.0-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 180 kB
  • ctags: 305
  • sloc: ansic: 1,435; tcl: 161; makefile: 57
file content (64 lines) | stat: -rw-r--r-- 1,811 bytes parent folder | download
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
/*
 * Copyright (c) 1994 Regents of the University of Michigan.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms are permitted
 * provided that this notice is preserved and that due credit is given
 * to the University of Michigan at Ann Arbor. The name of the University
 * may not be used to endorse or promote products derived from this
 * software without specific prior written permission. This software
 * is provided ``as is'' without express or implied warranty.
 */

/* Tcl_LdapBindCmd - simple function to bind to a server using LDAP */

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#include <lber.h>
#include <ldap.h>
#include <tcl.h>

extern int ldcnt;
extern LDAP *ldprime[1024];

int Tcl_LdapBindCmd (dummy, interp, argc, argv)
     ClientData dummy;
     Tcl_Interp *interp;
     int argc;
     char **argv;
{
    char *ldaphost, *binddn, *passwd;
    int ldapport = 389;

    if (argc < 5) {
	Tcl_AppendResult (interp, "Usage: ", argv[0], (char *) NULL);
	Tcl_AppendResult (interp, " Host Port BindDN Password ", (char *) NULL);
	return TCL_ERROR;
    }
    ldcnt++;
    if (ldcnt > 1023) {
	ldcnt--;
	Tcl_AppendResult (interp, "Too many connections! ", (char *) NULL);
	return TCL_ERROR;
    }

    ldaphost = argv[1];
    ldapport = atoi (argv[2]);
    binddn = argv[3];
    passwd = argv[4];

    if ((ldprime[ldcnt] = ldap_open (ldaphost, ldapport)) == NULL) {
	ldcnt--;
	Tcl_AppendResult (interp, "Cannot connect to host!", (char *) NULL);
	return TCL_ERROR;
    }
    if (ldap_bind_s (ldprime[ldcnt], binddn, passwd, LDAP_AUTH_SIMPLE) != LDAP_SUCCESS) {
	ldcnt--;
	Tcl_AppendResult (interp, "Invalid name or password!", (char *) NULL);
	return TCL_ERROR;
    }
    sprintf (interp->result, "%d", ldcnt);
    return TCL_OK;
}