~ubuntu-branches/ubuntu/wily/389-ds-base/wily

« back to all changes in this revision

Viewing changes to ldap/servers/slapd/tools/ldclt/srv.c

  • Committer: Package Import Robot
  • Author(s): Krzysztof Klimonda
  • Date: 2012-03-27 14:26:16 UTC
  • Revision ID: package-import@ubuntu.com-20120327142616-xt24t6nffm3f7ybz
Tags: upstream-1.2.11.7
ImportĀ upstreamĀ versionĀ 1.2.11.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/** BEGIN COPYRIGHT BLOCK
 
2
 * This Program is free software; you can redistribute it and/or modify it under
 
3
 * the terms of the GNU General Public License as published by the Free Software
 
4
 * Foundation; version 2 of the License.
 
5
 * 
 
6
 * This Program is distributed in the hope that it will be useful, but WITHOUT
 
7
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 
8
 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
 
9
 * 
 
10
 * You should have received a copy of the GNU General Public License along with
 
11
 * this Program; if not, write to the Free Software Foundation, Inc., 59 Temple
 
12
 * Place, Suite 330, Boston, MA 02111-1307 USA.
 
13
 * 
 
14
 * In addition, as a special exception, Red Hat, Inc. gives You the additional
 
15
 * right to link the code of this Program with code not covered under the GNU
 
16
 * General Public License ("Non-GPL Code") and to distribute linked combinations
 
17
 * including the two, subject to the limitations in this paragraph. Non-GPL Code
 
18
 * permitted under this exception must only link to the code of this Program
 
19
 * through those well defined interfaces identified in the file named EXCEPTION
 
20
 * found in the source code files (the "Approved Interfaces"). The files of
 
21
 * Non-GPL Code may instantiate templates or use macros or inline functions from
 
22
 * the Approved Interfaces without causing the resulting work to be covered by
 
23
 * the GNU General Public License. Only Red Hat, Inc. may make changes or
 
24
 * additions to the list of Approved Interfaces. You must obey the GNU General
 
25
 * Public License in all respects for all of the Program code and other code used
 
26
 * in conjunction with the Program except the Non-GPL Code covered by this
 
27
 * exception. If you modify this file, you may extend this exception to your
 
28
 * version of the file, but you are not obligated to do so. If you do not wish to
 
29
 * provide this exception without modification, you must delete this exception
 
30
 * statement from your version and license this file solely under the GPL without
 
31
 * exception. 
 
32
 * 
 
33
 * 
 
34
 * Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
 
35
 * Copyright (C) 2006 Red Hat, Inc.
 
36
 * All rights reserved.
 
37
 * END COPYRIGHT BLOCK **/
 
38
 
 
39
#ifdef HAVE_CONFIG_H
 
40
#  include <config.h>
 
41
#endif
 
42
 
 
43
 
 
44
#include <stdio.h>
 
45
#include <time.h>
 
46
#include <string.h>
 
47
#include <sys/time.h>
 
48
#include <sys/types.h>
 
49
#include <sys/fcntl.h>
 
50
#include <sys/stat.h>
 
51
#include <sys/inttypes.h>
 
52
#include <sys/socket.h>
 
53
#include <netdb.h>
 
54
#include <netinet/in.h>
 
55
#include <netinet/tcp.h>
 
56
#include "remote.h"
 
57
#include "lber.h"
 
58
#include "ldap.h"
 
59
 
 
60
enum {ADD,DELETE,MODRDN,MODIFY,RESULT};
 
61
 
 
62
typedef struct {
 
63
        int conn,op,type;
 
64
        char *dn;
 
65
        } Optype;
 
66
 
 
67
Optype *pendops;
 
68
int npend=-1,maxop;
 
69
char *ldap_ops[]={"ADD","DEL","MODRDN","MOD ","RESULT",NULL};
 
70
int ldap_val[]={LDAP_REQ_ADD,LDAP_REQ_DELETE,LDAP_REQ_MODRDN,LDAP_REQ_MODIFY};
 
71
 
 
72
print_packet(repconfirm *op)
 
73
{
 
74
 int i;
 
75
 printf("type=%d, res=%d, dnlen=%d, dN: %s\n",op->type,op->res,op->dnSize,op->dn);
 
76
 
 
77
}
 
78
 
 
79
main(int argc, char**argv)
 
80
{
 
81
 int i,port=16000;
 
82
 int sockfd,newfd;
 
83
 static char buff[512];
 
84
 char **tmp;
 
85
 struct sockaddr_in srvsaddr,claddr;
 
86
 struct hostent *cltaddr;
 
87
 uint32_t ipaddr;
 
88
 
 
89
 while((i=getopt(argc,argv,"p:"))!=EOF){
 
90
        switch(i){
 
91
                case 'p': port=atoi(optarg);
 
92
                        break;
 
93
                }
 
94
        }
 
95
 srvsaddr.sin_addr.s_addr=htonl(INADDR_ANY);
 
96
 srvsaddr.sin_family=AF_INET;
 
97
 srvsaddr.sin_port=htons(port);
 
98
 if((sockfd=socket(AF_INET,SOCK_STREAM,0))==-1){
 
99
        perror("Socket");
 
100
        exit(1);
 
101
        }
 
102
 i=1;
 
103
 if(setsockopt(sockfd,SOL_SOCKET,SO_REUSEADDR,&i,sizeof(int))!=0)
 
104
        perror("Sockopt");
 
105
 if(bind(sockfd,(struct sockaddr*)&srvsaddr,sizeof(struct sockaddr))!=0){
 
106
        perror("Bind");
 
107
        exit(1);
 
108
        }
 
109
 if(listen(sockfd,1)!=0)
 
110
        perror("listen");
 
111
 for(;;){
 
112
        i=sizeof(claddr);
 
113
        if((newfd=accept(sockfd,(struct sockaddr *)&claddr,&i))<0){
 
114
                perror("Accept");
 
115
                exit(1);
 
116
                }
 
117
        ipaddr=ntohl(claddr.sin_addr.s_addr);
 
118
        cltaddr=gethostbyaddr((char*)&ipaddr,sizeof(ipaddr),AF_INET);
 
119
        printf("Accepting from %s\n",cltaddr->h_name);
 
120
        while(read(newfd,buff,512)>0){
 
121
                print_packet((repconfirm*) buff);
 
122
                memset(buff,0,512);
 
123
                }
 
124
        close(newfd);
 
125
        }
 
126
 close(sockfd);
 
127
}
 
128