| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353 |
- /*
- 3APA3A simpliest proxy server
- (c) 2002-2008 by ZARAZA <3APA3A@security.nnov.ru>
- please read License Agreement
- */
- #include "proxy.h"
- #define HEADERSIZE 57
- #define RECORDSIZE 18
- int clientnegotiate(struct chain * redir, struct clientparam * param, struct sockaddr * addr){
- unsigned char buf[1024];
- int res;
- int len=0;
- unsigned char * user, *pass;
- user = redir->extuser;
- pass = redir->extpass;
- if(user) {
- if (*user == '*') {
- if(!param->username) return 4;
- user = param->username;
- pass = param->password;
- }
- }
- switch(redir->type){
- case R_TCP:
- case R_HTTP:
- return 0;
- case R_CONNECT:
- case R_CONNECTP:
- {
- len = sprintf((char *)buf, "CONNECT ");
- if(redir->type == R_CONNECTP && param->hostname) {
- len =+ sprintf((char *)buf + len, "%.256s", param->hostname);
- }
- else {
- if(*SAFAMILY(addr) == AF_INET6) buf[len++] = '[';
- len += myinet_ntop(AF_INET, SAADDR(addr), (char *)buf+8, 256);
- if(*SAFAMILY(addr) == AF_INET6) buf[len++] = ']';
- }
- len += sprintf((char *)buf + len,
- ":%hu HTTP/1.0\r\nProxy-Connection: keep-alive\r\n", *SAPORT(addr));
- if(user){
- unsigned char username[256];
- len += sprintf((char *)buf + len, "Proxy-authorization: basic ");
- sprintf((char *)username, "%.128s:%.64s", user, pass?pass:(unsigned char *)"");
- en64(username, buf+len, (int)strlen((char *)username));
- len = (int)strlen((char *)buf);
- len += sprintf((char *)buf + len, "\r\n");
- }
- len += sprintf((char *)buf + len, "\r\n");
- if(socksend(param->remsock, buf, len, conf.timeouts[CHAIN_TO]) != (int)strlen((char *)buf))
- return 31;
- param->statssrv64+=len;
- param->nwrites++;
- if((res = sockgetlinebuf(param, SERVER,buf,13,'\n',conf.timeouts[CHAIN_TO])) < 13)
- return 32;
- if(buf[9] != '2') return 33;
- while((res = sockgetlinebuf(param, SERVER,buf,1023,'\n', conf.timeouts[CHAIN_TO])) > 2);
- if(res <= 0) return 34;
- return 0;
- }
- case R_SOCKS4:
- case R_SOCKS4P:
- case R_SOCKS4B:
- {
- if(*SAFAMILY(addr) != AF_INET) return 44;
- buf[0] = 4;
- buf[1] = 1;
- memcpy(buf+2, SAPORT(addr), 2);
- if(redir->type == R_SOCKS4P && param->hostname) {
- buf[4] = buf[5] = buf[6] = 0;
- buf[7] = 3;
- }
- else memcpy(buf+4, SAADDR(addr), 4);
- if(!user)user = (unsigned char *)"anonymous";
- len = (int)strlen((char *)user) + 1;
- memcpy(buf+8, user, len);
- len += 8;
- if(redir->type == R_SOCKS4P && param->hostname) {
- int hostnamelen;
- hostnamelen = (int)strlen((char *)param->hostname) + 1;
- if(hostnamelen > 255) hostnamelen = 255;
- memcpy(buf+len, param->hostname, hostnamelen);
- len += hostnamelen;
- }
- if(socksend(param->remsock, buf, len, conf.timeouts[CHAIN_TO]) < len){
- return 41;
- }
- param->statssrv64+=len;
- param->nwrites++;
- if((len = sockgetlinebuf(param, SERVER, buf, (redir->type == R_SOCKS4B)? 3:8, EOF, conf.timeouts[CHAIN_TO])) != ((redir->type == R_SOCKS4B)? 3:8)){
- return 42;
- }
- if(buf[1] != 90) {
- return 43;
- }
- }
- return 0;
- case R_SOCKS5:
- case R_SOCKS5P:
- case R_SOCKS5B:
- {
- int inbuf = 0;
- buf[0] = 5;
- buf[1] = 1;
- buf[2] = user? 2 : 0;
- if(socksend(param->remsock, buf, 3, conf.timeouts[CHAIN_TO]) != 3){
- return 51;
- }
- param->statssrv64+=len;
- param->nwrites++;
- if(sockgetlinebuf(param, SERVER, buf, 2, EOF, conf.timeouts[CHAIN_TO]) != 2){
- return 52;
- }
- if(buf[0] != 5) {
- return 53;
- }
- if(buf[1] != 0 && !(buf[1] == 2 && user)){
- return 54;
- }
- if(buf[1] == 2){
- buf[inbuf++] = 1;
- buf[inbuf] = (unsigned char)strlen((char *)user);
- memcpy(buf+inbuf+1, user, buf[inbuf]);
- inbuf += buf[inbuf] + 1;
- buf[inbuf] = pass?(unsigned char)strlen((char *)pass):0;
- if(pass)memcpy(buf+inbuf+1, pass, buf[inbuf]);
- inbuf += buf[inbuf] + 1;
- if(socksend(param->remsock, buf, inbuf, conf.timeouts[CHAIN_TO]) != inbuf){
- return 51;
- }
- param->statssrv64+=inbuf;
- param->nwrites++;
- if(sockgetlinebuf(param, SERVER, buf, 2, EOF, 60) != 2){
- return 55;
- }
- if(buf[0] != 1 || buf[1] != 0) {
- return 56;
- }
- }
- buf[0] = 5;
- buf[1] = 1;
- buf[2] = 0;
- if(redir->type == R_SOCKS5P && param->hostname) {
- buf[3] = 3;
- len = (int)strlen((char *)param->hostname);
- if(len > 255) len = 255;
- buf[4] = len;
- memcpy(buf + 5, param->hostname, len);
- len += 5;
- }
- else {
- len = 3;
- buf[len++] = (*SAFAMILY(addr) == AF_INET)? 1 : 4;
- memcpy(buf+len, SAADDR(addr), SAADDRLEN(addr));
- len += SAADDRLEN(addr);
- }
- memcpy(buf+len, SAPORT(addr), 2);
- len += 2;
- if(socksend(param->remsock, buf, len, conf.timeouts[CHAIN_TO]) != len){
- return 51;
- }
- param->statssrv64+=len;
- param->nwrites++;
- if(sockgetlinebuf(param, SERVER, buf, 4, EOF, conf.timeouts[CHAIN_TO]) != 4){
- return 57;
- }
- if(buf[0] != 5) {
- return 53;
- }
- if(buf[1] != 0) {
- return 60 + (buf[1] % 10);
- }
- if(buf[3] != 1) {
- return 58;
- }
- if (redir->type != R_SOCKS5B && sockgetlinebuf(param, SERVER, buf, 6, EOF, conf.timeouts[CHAIN_TO]) != 6){
- return 59;
- }
- return 0;
- }
- default:
- return 30;
- }
- }
- int handleredirect(struct clientparam * param, struct ace * acentry){
- int connected = 0;
- int weight = 1000;
- int res;
- int done = 0;
- struct chain * cur;
- struct chain * redir = NULL;
- int r2;
- if(param->remsock != INVALID_SOCKET) {
- return 0;
- }
- if(SAISNULL(¶m->req) || !*SAPORT(¶m->req)) {
- return 100;
- }
- r2 = (myrand(param, sizeof(struct clientparam))%1000);
- for(cur = acentry->chains; cur; cur=cur->next){
- if(((weight = weight - cur->weight) > r2)|| done) {
- if(weight <= 0) {
- weight += 1000;
- done = 0;
- r2 = (myrand(param, sizeof(struct clientparam))%1000);
- }
- continue;
- }
- param->redirected++;
- done = 1;
- if(weight <= 0) {
- weight += 1000;
- done = 0;
- r2 = (myrand(param, sizeof(struct clientparam))%1000);
- }
- if(!connected){
- if(SAISNULL(&cur->addr) && !*SAPORT(&cur->addr)){
- if(cur->extuser){
- if(param->extusername)
- myfree(param->extusername);
- param->extusername = (unsigned char *)mystrdup((char *)((*cur->extuser == '*' && param->username)? param->username : cur->extuser));
- if(cur->extpass){
- if(param->extpassword)
- myfree(param->extpassword);
- param->extpassword = (unsigned char *)mystrdup((char *)((*cur->extuser == '*' && param->password)?param->password : cur->extpass));
- }
- if(*cur->extuser == '*' && !param->username) return 4;
- }
- switch(cur->type){
- case R_POP3:
- param->redirectfunc = pop3pchild;
- break;
- case R_FTP:
- param->redirectfunc = ftpprchild;
- break;
- case R_ADMIN:
- param->redirectfunc = adminchild;
- break;
- case R_ICQ:
- param->redirectfunc = icqprchild;
- break;
- /*
- case R_MSN:
- param->redirectfunc = msnprchild;
- break;
- */
- default:
- param->redirectfunc = proxychild;
- }
- return 0;
- }
- else if(!*SAPORT(&cur->addr) && !SAISNULL(&cur->addr)) {
- unsigned short port = *SAPORT(¶m->sinsr);
- memcpy(¶m->sinsr, &cur->addr, SASIZE(&cur->addr));
- *SAPORT(¶m->sinsr) = port;
- }
- else if(SAISNULL(&cur->addr) && *SAPORT(&cur->addr)) *SAPORT(¶m->sinsr) = *SAPORT(&cur->addr);
- else {
- memcpy(¶m->sinsr, &cur->addr, SASIZE(&cur->addr));
- }
- if((res = alwaysauth(param))){
- return (res == 10)? res : 60+res;
- }
- }
- else {
- res = (redir)?clientnegotiate(redir, param, (struct sockaddr *)&cur->addr):0;
- if(res) return res;
- }
- redir = cur;
- param->redirtype = redir->type;
- if(redir->type == R_TCP || redir->type ==R_HTTP) {
- if(cur->extuser){
- if(*cur -> extuser == '*' && !param->username) return 4;
- if(param->extusername)
- myfree(param->extusername);
- param->extusername = (unsigned char *)mystrdup((char *)((*cur->extuser == '*' && param->username)? param->username : cur->extuser));
- if(cur->extpass){
- if(param->extpassword)
- myfree(param->extpassword);
- param->extpassword = (unsigned char *)mystrdup((char *)((*cur->extuser == '*' && param->password)?param->password : cur->extpass));
- }
- }
- return 0;
- }
- connected = 1;
- }
- if(!connected) return 9;
- return (redir)?clientnegotiate(redir, param, (struct sockaddr *)¶m->req):0;
- }
- int IPInentry(struct sockaddr *sa, struct iplist *ipentry){
- int addrlen;
- unsigned char *ip, *ipf, *ipt;
- ip = (unsigned char *)SAADDR(sa);
- ipf = (unsigned char *)&ipentry->ip_from;
- ipt = (unsigned char *)&ipentry->ip_to;
- if(!sa || ! ipentry || *SAFAMILY(sa) != ipentry->family) return 0;
- addrlen = SAADDRLEN(sa);
-
- if(memcmp(ip,ipf,addrlen) < 0 || memcmp(ip,ipt,addrlen) > 0) return 0;
- return 1;
-
- }
- int ACLmatches(struct ace* acentry, struct clientparam * param){
- struct userlist * userentry;
- struct iplist *ipentry;
- struct portlist *portentry;
- struct period *periodentry;
- unsigned char * username;
- struct hostname * hstentry=NULL;
- int i;
- int match = 0;
-
- username = param->username?param->username:(unsigned char *)"-";
- if(acentry->src) {
- for(ipentry = acentry->src; ipentry; ipentry = ipentry->next)
- if(IPInentry((struct sockaddr *)¶m->sincr, ipentry)) {
- break;
- }
- if(!ipentry) return 0;
- }
- if((acentry->dst && SAISNULL(¶m->req)) || (acentry->dstnames && param->hostname)) {
- for(ipentry = acentry->dst; ipentry; ipentry = ipentry->next)
- if(IPInentry((struct sockaddr *)¶m->req, ipentry)) {
- break;
- }
- if(!ipentry) {
- if(acentry->dstnames && param->hostname){
- for(i=0; param->hostname[i]; i++){
- param->hostname[i] = tolower(param->hostname[i]);
- }
- while(i > 5 && param->hostname[i-1] == '.') param->hostname[i-1] = 0;
- for(hstentry = acentry->dstnames; hstentry; hstentry = hstentry->next){
- switch(hstentry->matchtype){
- case 0:
- if(strstr(param->hostname, hstentry->name)) match = 1;
- break;
- case 1:
- if(strstr(param->hostname, hstentry->name) == (char *)param->hostname) match = 1;
- break;
- case 2:
- if(strstr(param->hostname, hstentry->name) == (char *)(param->hostname + i - (strlen(hstentry->name)))) match = 1;
- break;
- default:
- if(!strcmp(param->hostname, hstentry->name)) match = 1;
- break;
- }
- if(match) break;
- }
- }
- }
- if(!ipentry && !hstentry) return 0;
- }
- if(acentry->ports && *SAPORT(¶m->req)) {
- for (portentry = acentry->ports; portentry; portentry = portentry->next)
- if(ntohs(*SAPORT(¶m->req)) >= portentry->startport &&
- ntohs(*SAPORT(¶m->req)) <= portentry->endport) {
- break;
- }
- if(!portentry) return 0;
- }
- if(acentry->wdays){
- if(!(acentry -> wdays & wday)) return 0;
- }
- if(acentry->periods){
- int start_time = (int)(param->time_start - basetime);
- for(periodentry = acentry->periods; periodentry; periodentry = periodentry -> next)
- if(start_time >= periodentry->fromtime && start_time < periodentry->totime){
- break;
- }
- if(!periodentry) return 0;
- }
- if(acentry->users){
- for(userentry = acentry->users; userentry; userentry = userentry->next)
- if(!strcmp((char *)username, (char *)userentry->user)){
- break;
- }
- if(!userentry) return 0;
- }
- if(acentry->operation) {
- if((acentry->operation & param->operation) != param->operation){
- return 0;
- }
- }
- if(acentry->weight && (acentry->weight < param->weight)) return 0;
- return 1;
- }
- static void initbandlims (struct clientparam *param){
- struct bandlim * be;
- int i;
- for(i=0, be = conf.bandlimiter; be && i<MAXBANDLIMS; be = be->next) {
- if(ACLmatches(be->ace, param)){
- if(be->ace->action == NOBANDLIM) {
- break;
- }
- param->bandlims[i++] = be;
- param->bandlimfunc = conf.bandlimfunc;
- }
- }
- if(i<MAXBANDLIMS)param->bandlims[i] = NULL;
- for(i=0, be = conf.bandlimiterout; be && i<MAXBANDLIMS; be = be->next) {
- if(ACLmatches(be->ace, param)){
- if(be->ace->action == NOBANDLIM) {
- break;
- }
- param->bandlimsout[i++] = be;
- param->bandlimfunc = conf.bandlimfunc;
- }
- }
- if(i<MAXBANDLIMS)param->bandlimsout[i] = NULL;
- }
- unsigned bandlimitfunc(struct clientparam *param, unsigned nbytesin, unsigned nbytesout){
- unsigned sleeptime = 0, nsleeptime;
- unsigned long sec;
- unsigned msec;
- unsigned now;
- int i;
- #ifdef _WIN32
- struct timeb tb;
- ftime(&tb);
- sec = (unsigned)tb.time;
- msec = (unsigned)tb.millitm*1000;
- #else
- struct timeval tv;
- gettimeofday(&tv, NULL);
- sec = tv.tv_sec;
- msec = tv.tv_usec;
- #endif
-
- if(!nbytesin && !nbytesout) return 0;
- pthread_mutex_lock(&bandlim_mutex);
- if(param->srv->version != conf.paused){
- initbandlims(param);
- }
- for(i=0; nbytesin&& i<MAXBANDLIMS && param->bandlims[i]; i++){
- if( !param->bandlims[i]->basetime ||
- param->bandlims[i]->basetime > sec ||
- param->bandlims[i]->basetime < (sec - 120)
- )
- {
- param->bandlims[i]->basetime = sec;
- param->bandlims[i]->nexttime = 0;
- continue;
- }
- now = ((sec - param->bandlims[i]->basetime) * 1000000) + msec;
- nsleeptime = (param->bandlims[i]->nexttime > now)?
- param->bandlims[i]->nexttime - now : 0;
- sleeptime = (nsleeptime > sleeptime)? nsleeptime : sleeptime;
- param->bandlims[i]->basetime = sec;
- param->bandlims[i]->nexttime = msec + nsleeptime + ((param->bandlims[i]->rate > 1000000)? ((nbytesin/32)*(256000000/param->bandlims[i]->rate)) : (nbytesin * (8000000/param->bandlims[i]->rate)));
- }
- for(i=0; nbytesout && i<MAXBANDLIMS && param->bandlimsout[i]; i++){
- if( !param->bandlimsout[i]->basetime ||
- param->bandlimsout[i]->basetime > sec ||
- param->bandlimsout[i]->basetime < (sec - 120)
- )
- {
- param->bandlimsout[i]->basetime = sec;
- param->bandlimsout[i]->nexttime = 0;
- continue;
- }
- now = ((sec - param->bandlimsout[i]->basetime) * 1000000) + msec;
- nsleeptime = (param->bandlimsout[i]->nexttime > now)?
- param->bandlimsout[i]->nexttime - now : 0;
- sleeptime = (nsleeptime > sleeptime)? nsleeptime : sleeptime;
- param->bandlimsout[i]->basetime = sec;
- param->bandlimsout[i]->nexttime = msec + nsleeptime + ((param->bandlimsout[i]->rate > 1000000)? ((nbytesout/32)*(256000000/param->bandlimsout[i]->rate)) : (nbytesout * (8000000/param->bandlimsout[i]->rate)));
- }
- pthread_mutex_unlock(&bandlim_mutex);
- return sleeptime/1000;
- }
- void trafcountfunc(struct clientparam *param){
- struct trafcount * tc;
- int countout = 0;
- pthread_mutex_lock(&tc_mutex);
- for(tc = conf.trafcounter; tc; tc = tc->next) {
- if(ACLmatches(tc->ace, param)){
- time_t t;
- if(tc->ace->action == NOCOUNTIN) break;
- if(tc->ace->action != COUNTIN) {
- countout = 1;
- continue;
- }
- tc->traf64 += param->statssrv64;
- time(&t);
- tc->updated = t;
- }
- }
- if(countout) for(tc = conf.trafcounter; tc; tc = tc->next) {
- if(ACLmatches(tc->ace, param)){
- time_t t;
- if(tc->ace->action == NOCOUNTOUT) break;
- if(tc->ace->action != COUNTOUT) {
- continue;
- }
- tc->traf64 += param->statscli64;
- time(&t);
- tc->updated = t;
- }
- }
- pthread_mutex_unlock(&tc_mutex);
- }
- int alwaysauth(struct clientparam * param){
- int res;
- struct trafcount * tc;
- int countout = 0;
- res = doconnect(param);
- if(!res){
- if(param->srv->version != conf.paused) return 333;
- initbandlims(param);
- for(tc = conf.trafcounter; tc; tc = tc->next) {
- if(tc->disabled) continue;
- if(ACLmatches(tc->ace, param)){
- if(tc->ace->action == NOCOUNTIN) break;
- if(tc->ace->action != COUNTIN) {
- countout = 1;
- continue;
- }
-
- if(tc->traflim64 <= tc->traf64) return 10;
- param->trafcountfunc = conf.trafcountfunc;
- param->maxtrafin64 = tc->traflim64 - tc->traf64;
- }
- }
- if(countout)for(tc = conf.trafcounter; tc; tc = tc->next) {
- if(tc->disabled) continue;
- if(ACLmatches(tc->ace, param)){
- if(tc->ace->action == NOCOUNTOUT) break;
- if(tc->ace->action != COUNTOUT) {
- continue;
- }
-
- if(tc->traflim64 <= tc->traf64) return 10;
- param->trafcountfunc = conf.trafcountfunc;
- param->maxtrafout64 = tc->traflim64 - tc->traf64;
- }
- }
- }
- return res;
- }
- int checkACL(struct clientparam * param){
- struct ace* acentry;
- if(!param->srv->acl) {
- return alwaysauth(param);
- }
- for(acentry = param->srv->acl; acentry; acentry = acentry->next) {
- if(ACLmatches(acentry, param)) {
- param->nolog = acentry->nolog;
- param->weight = acentry->weight;
- if(acentry->action == 2) {
- struct ace dup;
- if(param->operation < 256 && !(param->operation & CONNECT)){
- continue;
- }
- if(param->redirected && acentry->chains && SAISNULL(&acentry->chains->addr) && !*SAPORT(&acentry->chains->addr)) {
- continue;
- }
- memcpy(&dup, acentry, sizeof(struct ace));
- return handleredirect(param, &dup);
- }
- return acentry->action;
- }
- }
- return 3;
- }
- struct authcache {
- char * username;
- char * password;
- time_t expires;
- #ifndef NOIPV6
- struct sockaddr_in6 sa;
- #else
- struct sockaddr_in sa;
- #endif
- struct authcache *next;
- } *authc = NULL;
- int cacheauth(struct clientparam * param){
- struct authcache *ac, *last=NULL;
- pthread_mutex_lock(&hash_mutex);
- for(ac = authc; ac; ){
- if(ac->expires <= conf.time){
- if(ac->username)myfree(ac->username);
- if(ac->password)myfree(ac->password);
- if(!last){
- authc = ac->next;
- myfree(ac);
- ac = authc;
- }
- else {
- last->next = ac->next;
- myfree(ac);
- ac = last->next;
- }
- continue;
-
- }
- if(((!(conf.authcachetype&2)) || (param->username && ac->username && !strcmp(ac->username, param->username))) &&
- ((!(conf.authcachetype&1)) || (*SAFAMILY(&ac->sa) == *SAFAMILY(¶m->sincr) && !memcmp(SAADDR(&ac->sa), ¶m->sincr, SAADDRLEN(&ac->sa)))) &&
- (!(conf.authcachetype&4) || (ac->password && param->password && !strcmp(ac->password, param->password)))) {
- if(param->username){
- myfree(param->username);
- }
- param->username = mystrdup(ac->username);
- pthread_mutex_unlock(&hash_mutex);
- return 0;
- }
- last = ac;
- ac = ac->next;
- }
- pthread_mutex_unlock(&hash_mutex);
- return 4;
- }
- int doauth(struct clientparam * param){
- int res = 0;
- struct auth *authfuncs;
- struct authcache *ac;
- char * tmp;
- int ret = 0;
- for(authfuncs=param->srv->authfuncs; authfuncs; authfuncs=authfuncs->next){
- res = authfuncs->authenticate?(*authfuncs->authenticate)(param):0;
- if(!res) {
- if(authfuncs->authorize &&
- (res = (*authfuncs->authorize)(param)))
- return res;
- if(conf.authcachetype && authfuncs->authenticate && authfuncs->authenticate != cacheauth && param->username && (!(conf.authcachetype&4) || (!param->pwtype && param->password))){
- pthread_mutex_lock(&hash_mutex);
- for(ac = authc; ac; ac = ac->next){
- if((!(conf.authcachetype&2) || !strcmp(ac->username, param->username)) &&
- (!(conf.authcachetype&1) || (*SAFAMILY(&ac->sa) == *SAFAMILY(¶m->sincr) && !memcmp(SAADDR(&ac->sa), ¶m->sincr, SAADDRLEN(&ac->sa)))) &&
- (!(conf.authcachetype&4) || (ac->password && !strcmp(ac->password, param->password)))) {
- ac->expires = conf.time + conf.authcachetime;
- if(strcmp(ac->username, param->username)){
- tmp = ac->username;
- ac->username = mystrdup(param->username);
- myfree(tmp);
- }
- if((conf.authcachetype&4)){
- tmp = ac->password;
- ac->password = mystrdup(param->password);
- myfree(tmp);
- }
- memcpy(&ac->sa, ¶m->sincr, SASIZE(¶m->sincr));
- break;
- }
- }
- if(!ac){
- ac = myalloc(sizeof(struct authcache));
- if(ac){
- ac->expires = conf.time + conf.authcachetime;
- ac->username = mystrdup(param->username);
- memcpy(&ac->sa, ¶m->sincr, SASIZE(¶m->sincr));
- ac->password = NULL;
- if((conf.authcachetype&4) && param->password) ac->password = mystrdup(param->password);
- }
- ac->next = authc;
- authc = ac;
- }
- pthread_mutex_unlock(&hash_mutex);
- }
- break;
- }
- if(res > ret) ret = res;
- }
- if(!res){
- return alwaysauth(param);
- }
- return ret;
- }
- int ipauth(struct clientparam * param){
- int res;
- unsigned char *username;
- username = param->username;
- param->username = NULL;
- res = checkACL(param);
- param->username = username;
- return res;
- }
- int userauth(struct clientparam * param){
- return (param->username)? 0:4;
- }
- int dnsauth(struct clientparam * param){
- char buf[128];
- char addr[16];
- char dig[]="0123456789abcdef";
- unsigned u;
- int i;
- if(*SAFAMILY(¶m->sincr)!=AF_INET){
- char *s = buf;
- for(i=15; i>=0; i--){
- unsigned char c=((unsigned char *)SAADDR(¶m->sincr))[i];
- *s++ = dig[(c&0xf)];
- *s++ = '.';
- *s++ = dig[(c>>4)];
- *s++ = '.';
- }
- sprintf(s, "ip6.arpa");
- }
- else {
- u = ntohl(*(unsigned long *)SAADDR(¶m->sincr));
- sprintf(buf, "%u.%u.%u.%u.in-addr.arpa",
- ((u&0x000000FF)),
- ((u&0x0000FF00)>>8),
- ((u&0x00FF0000)>>16),
- ((u&0xFF000000)>>24));
-
- }
- if(!udpresolve(*SAFAMILY(¶m->sincr), buf, addr, NULL, param, 1)) return 6;
- if(!memcmp(SAADDR(¶m->sincr), addr, SAADDRLEN(¶m->sincr))) return 6;
- return param->username? 0:4;
- }
- int strongauth(struct clientparam * param){
- struct passwords * pwl;
- unsigned char buf[256];
- if(!param->username) return 4;
- pthread_mutex_lock(&pwl_mutex);
- for(pwl = conf.pwl; pwl; pwl=pwl->next){
- if(!strcmp((char *)pwl->user, (char *)param->username)) switch(pwl->pwtype) {
- case CL:
- if(!pwl->password || !*pwl->password){
- break;
- }
- else if (!param->pwtype && param->password && !strcmp((char *)param->password, (char *)pwl->password)){
- break;
- }
- #ifndef NOCRYPT
- else if (param->pwtype == 2 && param->password) {
- ntpwdhash(buf, pwl->password, 0);
- mschap(buf, param->password, buf + 16);
- if(!memcmp(buf+16, param->password+8, 24)) {
- break;
- }
- }
- #endif
- pthread_mutex_unlock(&pwl_mutex);
- return 6;
- #ifndef NOCRYPT
- case CR:
- if(param->password && !param->pwtype && !strcmp((char *)pwl->password, (char *)mycrypt(param->password, pwl->password,buf))) {
- break;
- }
- pthread_mutex_unlock(&pwl_mutex);
- return 7;
- case NT:
- if(param->password && !param->pwtype && !memcmp(pwl->password, ntpwdhash(buf,param->password, 1), 32)) {
- break;
- }
- else if (param->pwtype == 2){
- fromhex(pwl->password, buf, 16);
- mschap(buf, param->password, buf + 16);
- if(!memcmp(buf + 16, param->password+8, 24)) {
- break;
- }
- }
- pthread_mutex_unlock(&pwl_mutex);
- return 8;
- #endif
- default:
- pthread_mutex_unlock(&pwl_mutex);
- return 999;
- }
- else continue;
- pthread_mutex_unlock(&pwl_mutex);
- return 0;
- }
- pthread_mutex_unlock(&pwl_mutex);
- return 5;
- }
- struct auth authfuncs[] = {
- {authfuncs+1, NULL, NULL, ""},
- {authfuncs+2, ipauth, NULL, "iponly"},
- {authfuncs+3, userauth, checkACL, "useronly"},
- {authfuncs+4, dnsauth, checkACL, "dnsname"},
- {authfuncs+5, strongauth, checkACL, "strong"},
- {authfuncs+6, cacheauth, checkACL, "cache"},
- {authfuncs+7, NULL, NULL, "none"},
- {NULL, NULL, NULL, ""}
- };
- struct hashtable dns_table = {0, 4, {0,0,0,0}, NULL, NULL, NULL};
- struct hashtable dns6_table = {0, 16, {0,0,0,0}, NULL, NULL, NULL};
- void nametohash(const unsigned char * name, unsigned char *hash, unsigned char *rnd){
- unsigned i, j, k;
- memcpy(hash, rnd, sizeof(unsigned)*4);
- for(i=0, j=0, k=0; name[j]; j++){
- hash[i] += (toupper(name[j]) - 32)+rnd[((toupper(name[j]))*29277+rnd[(k+j+i)%16]+k+j+i)%16];
- if(++i == sizeof(unsigned)*4) {
- i = 0;
- k++;
- }
- }
- }
- unsigned hashindex(struct hashtable *ht, const unsigned char* hash){
- unsigned t1, t2, t3, t4;
- t1 = *(unsigned *)hash;
- t2 = *(unsigned *)(hash + sizeof(unsigned));
- t3 = *(unsigned *)(hash + (2*sizeof(unsigned)));
- t4 = *(unsigned *)(hash + (3*sizeof(unsigned)));
- return (t1 + (t2 * 7) + (t3 * 17) + (t4 * 29) ) % (ht->hashsize >> 2);
- }
- void destroyhashtable(struct hashtable *ht){
- pthread_mutex_lock(&hash_mutex);
- if(ht->hashtable){
- myfree(ht->hashtable);
- ht->hashtable = NULL;
- }
- if(ht->hashvalues){
- myfree(ht->hashvalues);
- ht->hashvalues = NULL;
- }
- ht->hashsize = 0;
- pthread_mutex_unlock(&hash_mutex);
- }
- #define hvalue(I) ((struct hashentry *)((char *)ht->hashvalues + (I)*(sizeof(struct hashentry) + ht->recsize - 4)))
- int inithashtable(struct hashtable *ht, unsigned nhashsize){
- unsigned i;
- clock_t c;
- #ifdef _WIN32
- struct timeb tb;
- ftime(&tb);
- #else
- struct timeval tb;
- struct timezone tz;
- gettimeofday(&tb, &tz);
- #endif
- c = clock();
- if(nhashsize<4) return 1;
- pthread_mutex_lock(&hash_mutex);
- if(ht->hashtable){
- myfree(ht->hashtable);
- ht->hashtable = NULL;
- }
- if(ht->hashvalues){
- myfree(ht->hashvalues);
- ht->hashvalues = NULL;
- }
- ht->hashsize = 0;
- if(!(ht->hashtable = myalloc((nhashsize>>2) * sizeof(struct hashentry *)))){
- pthread_mutex_unlock(&hash_mutex);
- return 2;
- }
- if(!(ht->hashvalues = myalloc(nhashsize * (sizeof(struct hashentry) + (ht->recsize-4))))){
- myfree(ht->hashtable);
- ht->hashtable = NULL;
- pthread_mutex_unlock(&hash_mutex);
- return 3;
- }
- ht->hashsize = nhashsize;
- ht->rnd[0] = myrand(&tb, sizeof(tb));
- ht->rnd[1] = myrand(ht->hashtable, sizeof(ht->hashtable));
- ht->rnd[2] = myrand(&c, sizeof(c));
- ht->rnd[3] = myrand(ht->hashvalues,sizeof(ht->hashvalues));
- memset(ht->hashtable, 0, (ht->hashsize>>2) * sizeof(struct hashentry *));
- memset(ht->hashvalues, 0, ht->hashsize * (sizeof(struct hashentry) + ht->recsize -4));
- for(i = 0; i< (ht->hashsize - 1); i++) {
- hvalue(i)->next = hvalue(i+1);
- }
- ht->hashempty = ht->hashvalues;
- pthread_mutex_unlock(&hash_mutex);
- return 0;
- }
- void hashadd(struct hashtable *ht, const unsigned char* name, unsigned char* value, time_t expires){
- struct hashentry * hen, *he;
- struct hashentry ** hep;
- unsigned index;
-
- pthread_mutex_lock(&hash_mutex);
- if(!ht||!value||!name||!ht->hashtable||!ht->hashempty) {
- pthread_mutex_unlock(&hash_mutex);
- return;
- }
- hen = ht->hashempty;
- ht->hashempty = ht->hashempty->next;
- nametohash(name, hen->hash, (unsigned char *)ht->rnd);
- memcpy(hen->value, value, ht->recsize);
- hen->expires = expires;
- hen->next = NULL;
- index = hashindex(ht, hen->hash);
- for(hep = ht->hashtable + index; (he = *hep)!=NULL; ){
- if(he->expires < conf.time || !memcmp(hen->hash, he->hash, sizeof(he->hash))) {
- (*hep) = he->next;
- he->expires = 0;
- he->next = ht->hashempty;
- ht->hashempty = he;
- }
- else hep=&(he->next);
- }
- hen->next = ht->hashtable[index];
- ht->hashtable[index] = hen;
- pthread_mutex_unlock(&hash_mutex);
- }
- unsigned long hashresolv(struct hashtable *ht, const unsigned char* name, unsigned char* value, unsigned *ttl){
- unsigned char hash[sizeof(unsigned)*4];
- struct hashentry ** hep;
- struct hashentry *he;
- unsigned index;
- pthread_mutex_lock(&hash_mutex);
- if(!ht || !ht->hashtable || !name) {
- pthread_mutex_unlock(&hash_mutex);
- return 0;
- }
- nametohash(name, hash, (unsigned char *)ht->rnd);
- index = hashindex(ht, hash);
- for(hep = ht->hashtable + index; (he = *hep)!=NULL; ){
- if(he->expires < conf.time) {
- (*hep) = he->next;
- he->expires = 0;
- he->next = ht->hashempty;
- ht->hashempty = he;
- }
- else if(!memcmp(hash, he->hash, sizeof(unsigned)*4)){
- if(ttl) *ttl = (unsigned)(he->expires - conf.time);
- memcpy(value, he->value, ht->recsize);
- pthread_mutex_unlock(&hash_mutex);
- return 1;
- }
- else hep=&(he->next);
- }
- pthread_mutex_unlock(&hash_mutex);
- return 0;
- }
- struct nserver nservers[MAXNSERVERS] = {{{0},0}, {{0},0}, {{0},0}, {{0},0}, {{0},0}};
- struct nserver authnserver;
- unsigned long udpresolve(int af, unsigned char * name, unsigned char * value, unsigned *retttl, struct clientparam* param, int makeauth){
- int i,n;
- unsigned long retval;
- if((af == AF_INET) && (retval = hashresolv(&dns_table, name, value, retttl))) {
- return retval;
- }
- if((af == AF_INET6) && (retval = hashresolv(&dns6_table, name, value, retttl))) {
- return retval;
- }
- n = (makeauth && !SAISNULL(&authnserver.addr))? 1 : numservers;
- for(i=0; i<n; i++){
- unsigned short nq, na;
- unsigned char b[4098], *buf, *s1, *s2;
- int j, k, len, flen;
- SOCKET sock;
- unsigned ttl;
- #ifndef NOIPV6
- struct sockaddr_in6 addr;
- #else
- struct sockaddr_in addr;
- #endif
- struct sockaddr *sinsr, *sinsl;
- int usetcp = 0;
- unsigned short serial = 1;
- buf = b+2;
- sinsl = (param && !makeauth)? (struct sockaddr *)¶m->sinsl : (struct sockaddr *)&addr;
- sinsr = (param && !makeauth)? (struct sockaddr *)¶m->sinsr : (struct sockaddr *)&addr;
- memset(sinsl, 0, sizeof(addr));
- memset(sinsr, 0, sizeof(addr));
-
- if(makeauth && !SAISNULL(&authnserver.addr)){
- usetcp = authnserver.usetcp;
- *SAFAMILY(sinsl) = *SAFAMILY(&authnserver.addr);
- }
- else {
- usetcp = nservers[i].usetcp;
- *SAFAMILY(sinsl) = *SAFAMILY(&nservers[i].addr);
- }
- if((sock=so._socket(SASOCK(sinsl), usetcp?SOCK_STREAM:SOCK_DGRAM, usetcp?IPPROTO_TCP:IPPROTO_UDP)) == INVALID_SOCKET) break;
- if(so._bind(sock,sinsl,sizeof(addr))){
- so._shutdown(sock, SHUT_RDWR);
- so._closesocket(sock);
- break;
- }
- if(makeauth && !SAISNULL(&authnserver.addr)){
- memcpy(sinsr, &authnserver.addr, sizeof(addr));
- }
- else {
- memcpy(sinsr, &nservers[i].addr, sizeof(addr));
- }
- if(usetcp){
- if(so._connect(sock,sinsr,sizeof(addr))) {
- so._shutdown(sock, SHUT_RDWR);
- so._closesocket(sock);
- break;
- }
- }
- len = (int)strlen((char *)name);
-
- serial = myrand(name,len);
- *(unsigned short*)buf = serial; /* query id */
- buf[2] = 1; /* recursive */
- buf[3] = 0;
- buf[4] = 0;
- buf[5] = 1; /* 1 request */
- buf[6] = buf[7] = 0; /* no replies */
- buf[8] = buf[9] = 0; /* no ns count */
- buf[10] = buf[11] = 0; /* no additional */
- if(len > 255) {
- len = 255;
- }
- memcpy(buf + 13, name, len);
- len += 13;
- buf[len] = 0;
- for(s2 = buf + 12; (s1 = (unsigned char *)strchr((char *)s2 + 1, '.')); s2 = s1)*s2 = (unsigned char)((s1 - s2) - 1);
- *s2 = (len - (int)(s2 - buf)) - 1;
- len++;
- buf[len++] = 0;
- buf[len++] = (makeauth == 1)? 0x0c : (af==AF_INET6? 0x1c:0x01); /* PTR:host address */
- buf[len++] = 0;
- buf[len++] = 1; /* INET */
- if(usetcp){
- buf-=2;
- *(unsigned short*)buf = htons(len);
- len+=2;
- }
- if(socksendto(sock, sinsr, buf, len, conf.timeouts[SINGLEBYTE_L]*1000) != len){
- so._shutdown(sock, SHUT_RDWR);
- so._closesocket(sock);
- continue;
- }
- if(param) param->statscli64 += len;
- len = sockrecvfrom(sock, sinsr, buf, 4096, 15000);
- so._shutdown(sock, SHUT_RDWR);
- so._closesocket(sock);
- if(len <= 13) {
- continue;
- }
- if(param) param->statssrv64 += len;
- if(usetcp){
- unsigned short us;
- us = ntohs(*(unsigned short*)buf);
- len-=2;
- buf+=2;
- if(us > 4096 || us < len || (us > len && sockrecvfrom(sock, sinsr, buf+len, us-len, 15000) != us-len)) {
- continue;
- }
- }
- if(*(unsigned short *)buf != serial)continue;
- if((na = buf[7] + (((unsigned short)buf[6])<<8)) < 1) {
- return 0;
- }
- nq = buf[5] + (((unsigned short)buf[4])<<8);
- if (nq != 1) {
- continue; /* we did only 1 request */
- }
- for(k = 13; k<len && buf[k]; k++) {
- }
- k++;
- if( (k+4) >= len) {
- continue;
- }
- k += 4;
- if(na > 255) na = 255; /* somebody is very evil */
- for (j = 0; j < na; j++) { /* now there should be answers */
- if((k+(af == AF_INET6?28:16)) > len) {
- break;
- }
- flen = buf[k+11] + (((unsigned short)buf[k+10])<<8);
- if((k+12+flen) > len) {
- break;
- }
- if(makeauth != 1){
- if(buf[k+2] != 0 || buf[k+3] != (af == AF_INET6?0x1c:0x1) || flen != (af == AF_INET6?16:4)) {
- k+= (12 + flen);
- continue; /* we need A IPv4 */
- }
- ttl = ntohl(*(unsigned long *)(buf + k + 6));
- memcpy(value, buf + k + 12, af == AF_INET6? 16:4);
- if(ttl < 60 || ttl > (3600*12)) ttl = 300;
- if(ttl){
- hashadd(af == AF_INET6?&dns6_table:&dns_table, name, value, conf.time+ttl);
- }
- if(retttl) *retttl = ttl;
- return 1;
- }
- else {
-
- if(buf[k+2] != 0 || buf[k+3] != 0x0c) {
- k+= (12 + flen);
- continue; /* we need A PTR */
- }
- for (s2 = buf + k + 12; s2 < (buf + k + 12 + len) && *s2; ){
- s1 = s2 + ((unsigned)*s2) + 1;
- *s2 = '.';
- s2 = s1;
- }
- *s2 = 0;
- if(param->username)myfree(param->username);
- param->username = mystrdup (buf + k + 13);
-
- return udpresolve(af,param->username, value, NULL, NULL, 2);
- }
- }
- }
- return 0;
- }
- unsigned long myresolver(int af, unsigned char * name, unsigned char * value){
- return udpresolve(af, name, value, NULL, NULL, 0);
- }
- unsigned long fakeresolver (int af, unsigned char *name, unsigned char * value){
- memset(value, 0, af == AF_INET6? 16 : 4);
- if(af == AF_INET6){
- memset(value, 0, 16);
- value[15] = 2;
- }
- else {
- value[0] = 127;
- value[1] = 0;
- value[2] = 0;
- value[3] = 2;
- }
- return 1;
- }
- #ifndef NOODBC
- SQLHENV henv = NULL;
- SQLHSTMT hstmt = NULL;
- SQLHDBC hdbc = NULL;
- char * sqlstring = NULL;
- void close_sql(){
- if(hstmt) {
- SQLFreeHandle(SQL_HANDLE_STMT, hstmt);
- hstmt = NULL;
- }
- if(hdbc){
- SQLDisconnect(hdbc);
- SQLFreeHandle(SQL_HANDLE_DBC, hdbc);
- hdbc = NULL;
- }
- if(henv) {
- SQLFreeHandle(SQL_HANDLE_ENV, henv);
- henv = NULL;
- }
- }
- int attempt = 0;
- time_t attempt_time = 0;
- int init_sql(char * s){
- SQLRETURN retcode;
- char * datasource;
- char * username;
- char * password;
- char * string;
- if(!s) return 0;
- if(!sqlstring || strcmp(sqlstring, s)){
- string = sqlstring;
- sqlstring=mystrdup(s);
- if(string)myfree(string);
- }
- if(hstmt || hdbc || henv) close_sql();
- attempt++;
- attempt_time = time(0);
- if(!henv){
- retcode = SQLAllocHandle(SQL_HANDLE_ENV, SQL_NULL_HANDLE, &henv);
- if (!henv || (retcode != SQL_SUCCESS && retcode != SQL_SUCCESS_WITH_INFO)){
- henv = NULL;
- return 0;
- }
- retcode = SQLSetEnvAttr(henv, SQL_ATTR_ODBC_VERSION, (void*)SQL_OV_ODBC3, 0);
- if (retcode != SQL_SUCCESS && retcode != SQL_SUCCESS_WITH_INFO) {
- return 0;
- }
- }
- if(!hdbc){
- retcode = SQLAllocHandle(SQL_HANDLE_DBC, henv, &hdbc);
- if (!hdbc || (retcode != SQL_SUCCESS && retcode != SQL_SUCCESS_WITH_INFO)) {
- hdbc = NULL;
- SQLFreeHandle(SQL_HANDLE_ENV, henv);
- henv = NULL;
- return 0;
- }
- SQLSetConnectAttr(hdbc, SQL_LOGIN_TIMEOUT, (void*)15, 0);
- }
- string = mystrdup(sqlstring);
- if(!string) return 0;
- datasource = strtok(string, ",");
- username = strtok(NULL, ",");
- password = strtok(NULL, ",");
-
- /* Connect to data source */
- retcode = SQLConnect(hdbc, (SQLCHAR*) datasource, (SQLSMALLINT)strlen(datasource),
- (SQLCHAR*) username, (SQLSMALLINT)((username)?strlen(username):0),
- (SQLCHAR*) password, (SQLSMALLINT)((password)?strlen(password):0));
- myfree(string);
- if (retcode != SQL_SUCCESS && retcode != SQL_SUCCESS_WITH_INFO){
- SQLFreeHandle(SQL_HANDLE_DBC, hdbc);
- hdbc = NULL;
- SQLFreeHandle(SQL_HANDLE_ENV, henv);
- henv = NULL;
- return 0;
- }
- retcode = SQLAllocHandle(SQL_HANDLE_STMT, hdbc, &hstmt);
- if (retcode != SQL_SUCCESS && retcode != SQL_SUCCESS_WITH_INFO){
- close_sql();
- return 0;
- }
- return 1;
- }
- void sqlerr (char *buf){
- if(conf.stdlog){
- fprintf(conf.stdlog, "%s\n", buf);
- fflush(conf.stdlog);
- }
- pthread_mutex_unlock(&odbc_mutex);
- }
- void logsql(struct clientparam * param, const unsigned char *s) {
- unsigned char buf[4096];
- SQLRETURN ret;
- int len;
- len = dobuf(param, buf, s, "\'");
- if(param->nolog) return;
- pthread_mutex_lock(&odbc_mutex);
- if(attempt > 5){
- time_t t;
- t = time(0);
- if (t - attempt_time < 180){
- sqlerr(buf);
- return;
- }
- }
- if(!hstmt){
- if(!init_sql(sqlstring)) {
- sqlerr(buf);
- return;
- }
- }
- if(hstmt){
- ret = SQLExecDirect(hstmt, (SQLCHAR *)buf, (SQLINTEGER)len);
- if(ret != SQL_SUCCESS && ret != SQL_SUCCESS_WITH_INFO){
- close_sql();
- if(!init_sql(sqlstring)){
- sqlerr(buf);
- return;
- }
- if(hstmt) {
- ret = SQLExecDirect(hstmt, (SQLCHAR *)buf, (SQLINTEGER)len);
- if(ret != SQL_SUCCESS && ret != SQL_SUCCESS_WITH_INFO){
- sqlerr(buf);
- return;
- }
- attempt = 0;
- }
- }
- attempt = 0;
- }
- pthread_mutex_unlock(&odbc_mutex);
- }
- #endif
-
|