| version 1.20, 2004/03/08 08:24:42 |
version 1.23, 2004/09/17 08:46:10 |
|
|
| /* $OpenXM: OpenXM/src/kan96xx/plugin/oxmisc.c,v 1.19 2004/02/25 23:14:35 takayama Exp $ */ |
/* $OpenXM: OpenXM/src/kan96xx/plugin/oxmisc.c,v 1.22 2004/09/17 07:27:28 takayama Exp $ */ |
| #include <stdio.h> |
#include <stdio.h> |
| #include <sys/types.h> |
#include <sys/types.h> |
| #include <sys/stat.h> |
#include <sys/stat.h> |
| Line 618 int oxIsThereErrorClient(oxclientp client) { |
|
| Line 618 int oxIsThereErrorClient(oxclientp client) { |
|
| return(0); |
return(0); |
| } |
} |
| |
|
| oxclientp oxCreateClient(char *sname,int portStream,int portControl) |
oxclientp oxCreateClient(char *sname,int portStream,int portControl, |
| |
char *passControl, char *passData) |
| /* you also need to change oxCreateClient2. */ |
/* you also need to change oxCreateClient2. */ |
| { |
{ |
| int v = 0; |
int v = 0; |
| Line 642 oxclientp oxCreateClient(char *sname,int portStream,in |
|
| Line 643 oxclientp oxCreateClient(char *sname,int portStream,in |
|
| return(NULL); |
return(NULL); |
| } |
} |
| |
|
| |
if (passControl != NULL) { |
| |
if (v) fprintf(stderr,"Sending password %s for the control channel.\n", |
| |
passControl); |
| |
if (write(fdControl,passControl,strlen(passControl)+1) < 0) { |
| |
fprintf(stderr,"oxCreateClient(): failed to send passControl.\n"); |
| |
return(NULL); |
| |
} |
| |
} |
| |
if (passData != NULL) { |
| |
if (v) fprintf(stderr,"Sending password %s for the data channel.\n", |
| |
passData); |
| |
if (write(fdStream,passData,strlen(passData)+1) < 0) { |
| |
fprintf(stderr,"oxCreateClient(): failed to send passData.\n"); |
| |
return(NULL); |
| |
} |
| |
} |
| |
|
| controlByteOrder = oxSetByteOrder(fdControl); |
controlByteOrder = oxSetByteOrder(fdControl); |
| if (v) fprintf(stderr,"Byte order for control process is %s.\n", |
if (v) fprintf(stderr,"Byte order for control process is %s.\n", |
| (controlByteOrder == 0? "network byte order": |
(controlByteOrder == 0? "network byte order": |
| Line 878 char *oxGenPass(void) { |
|
| Line 896 char *oxGenPass(void) { |
|
| static int seed = 0; |
static int seed = 0; |
| long p; |
long p; |
| char *s; |
char *s; |
| int i; |
int i,n; |
| if (seed == 0) { |
if (seed == 0) { |
| seed = (int) time(NULL) + (int) &p; |
seed = (int) time(NULL) + (int) &p; |
| srandom((unsigned int) seed); |
srandom((unsigned int) seed); |
| } |
} |
| for (i=0; i < ((int) &p) % 100 ; i++) random(); |
|
| p = random(); |
|
| s = (char *)malloc(128*sizeof(char)); |
s = (char *)malloc(128*sizeof(char)); |
| |
if (s == NULL) { fprintf(stderr,"No more memory.\n"); return(s); } |
| |
n = (((int) s) + (int) time(NULL)) % 100; |
| |
for (i=0; i < n ; i++) random(); |
| |
p = random(); |
| sprintf(s,"%ld",p); |
sprintf(s,"%ld",p); |
| return(s); |
return(s); |
| } |
} |
| Line 907 static void cancelConnection() { |
|
| Line 927 static void cancelConnection() { |
|
| } |
} |
| |
|
| oxclientp oxCreateClient2(int fdstream,int portStream, |
oxclientp oxCreateClient2(int fdstream,int portStream, |
| int fdcontrol,int portControl,int ipmask,char *pass) |
int fdcontrol,int portControl,int ipmask, |
| |
char *passControl, char *passData) |
| { |
{ |
| int v = 0; |
int v = 0; |
| int fdControl = -1; |
int fdControl = -1; |
| Line 955 oxclientp oxCreateClient2(int fdstream,int portStream, |
|
| Line 976 oxclientp oxCreateClient2(int fdstream,int portStream, |
|
| } |
} |
| |
|
| /* Authentication by password. */ |
/* Authentication by password. */ |
| m = strlen(pass); |
m = strlen(passControl)+strlen(passData); |
| if (m > 0) { |
if (m > 0) { |
| s = (char *)mymalloc(sizeof(char)*(m+1)); |
s = (char *)mymalloc(sizeof(char)*(m+1)); |
| |
m = strlen(passControl); s[0] = 0; |
| read(fdControl,s,m+1); s[m] = '\0'; |
read(fdControl,s,m+1); s[m] = '\0'; |
| if (strcmp(s,pass) != 0) { |
if (strcmp(s,passControl) != 0) { |
| |
fprintf(stderr,"s=%s, passControl=%s\n",s,passControl); |
| fprintf(stderr,"oxCreateClient2(): password authentication failed for control channel.\n"); |
fprintf(stderr,"oxCreateClient2(): password authentication failed for control channel.\n"); |
| close(fdControl); |
close(fdControl); |
| return(NULL); |
return(NULL); |
| } |
} |
| |
m = strlen(passData); s[0] = 0; |
| read(fdStream,s,m+1); s[m] = '\0'; |
read(fdStream,s,m+1); s[m] = '\0'; |
| if (strcmp(s,pass) != 0) { |
if (strcmp(s,passData) != 0) { |
| |
fprintf(stderr,"s=%s, passData=%s\n",s,passData); |
| fprintf(stderr,"oxCreateClient2(): password authentication failed for data channel.\n"); |
fprintf(stderr,"oxCreateClient2(): password authentication failed for data channel.\n"); |
| close(fdStream); |
close(fdStream); |
| return(NULL); |
return(NULL); |