/* Copyright (C) 1979-1996 TcX AB & Monty Program KB & Detron HB This software is distributed with NO WARRANTY OF ANY KIND. No author or distributor accepts any responsibility for the consequences of using it, or for whether it serves any particular purpose or works at all, unless he or she says so in writing. Refer to the Free Public License (the "License") for full details. Every copy of this file must include a copy of the License, normally in a plain ASCII text file named PUBLIC. The License grants you the right to copy, modify and redistribute this file, but only under certain conditions described in the License. Among other things, the License requires that the copyright notice and this notice be preserved on all copies. */ #include "mysql_priv.h" #include /* Send a error string to client */ void send_error(NET *net, uint sql_errno, char *err) { uint length; char buff[MYSQL_ERRMSG_SIZE+2]; THD *thd=current_thd; DBUG_ENTER("send_error"); VOID(net_flush(net)); if (!err) { if (sql_errno) err=ER(sql_errno); else if (!err) { if ((err=net->last_error)[0]) sql_errno=net->last_errno; else { sql_errno=ER_UNKNOWN_ERROR; err=ER(sql_errno); /* purecov: inspected */ } } } if (net->fd < 0) { if (thd && thd->bootstrap) { fprintf(stderr,"ERROR: %d %s\n",sql_errno,err); } DBUG_VOID_RETURN; } if (net->return_errno) { // new client code; Add errno before message int2store(buff,sql_errno); length= (uint) (strmake(buff+2,err,MYSQL_ERRMSG_SIZE-1) - buff); err=buff; } else { length=strlen(err); set_if_smaller(length,MYSQL_ERRMSG_SIZE); } VOID(net_write_command(net,(uchar) 255,(char*) err,length)); if (thd) thd->fatal_error=0; // Error message is given DBUG_VOID_RETURN; } /** ** write error package and flush to client ** It's a little too low level, but I don't want to allow another buffer */ /* VARARGS3 */ void net_printf(NET *net, uint errcode, ...) { va_list args; uint length,offset; char *format,*text_pos; int head_length= NET_HEADER_SIZE; THD *thd=current_thd; DBUG_ENTER("net_printf"); DBUG_PRINT("enter",("message: %u",errcode)); va_start(args,errcode); VOID(net_flush(net)); format=ER(errcode); offset= net->return_errno ? 2 : 0; text_pos=(char*) net->buff+head_length+offset+1; (void) vsprintf(text_pos,format,args); length=strlen((char*) text_pos); if (length >= sizeof(net->last_error)) length=sizeof(net->last_error)-1; /* purecov: inspected */ va_end(args); if (net->fd < 0) { if (thd && thd->bootstrap) { fprintf(stderr,"ERROR: %d %s\n",errcode,text_pos); thd->fatal_error=1; } DBUG_VOID_RETURN; } int3store(net->buff,length+1+offset); net->buff[3]= (net->compress) ? 0 : (uchar) (net->pkt_nr++); net->buff[head_length]=(uchar) 255; // Error package if (offset) int2store(text_pos-2, errcode); VOID(net_real_write(net,(char*) net->buff,length+head_length+1+offset)); if (thd) thd->fatal_error=0; // Error message is given DBUG_VOID_RETURN; } void send_ok(NET *net,ha_rows affected_rows,ulonglong id,const char *message) { char buff[MYSQL_ERRMSG_SIZE+10],*pos; DBUG_ENTER("send_ok"); buff[0]=0; // No fields pos=net_store_length(buff+1,(ulonglong) affected_rows); pos=net_store_length(pos, (ulonglong) id); if (message) pos=net_store_data((char*) pos,message); if (net->fd >= 0) { VOID(my_net_write(net,buff,(uint) (pos-buff))); VOID(net_flush(net)); } DBUG_VOID_RETURN; } void send_eof(NET *net,bool no_flush) { static char eof_buff[1]= { (char) 254 }; /* Marker for end of fields */ DBUG_ENTER("send_eof"); if (net->fd >= 0) { VOID(my_net_write(net,eof_buff,1)); if (!no_flush) VOID(net_flush(net)); } DBUG_VOID_RETURN; } /**************************************************************************** ** Store a field length in logical packet ****************************************************************************/ char * net_store_length(char *pkg,ulonglong length) { uchar *packet=(uchar*) pkg; if (length < LL(251)) { *packet=(uchar) length; return (char*) packet+1; } /* 251 is reserved for NULL */ if (length < LL(65536)) { *packet++=252; int2store(packet,(uint) length); return (char*) packet+2; } if (length < LL(65536L*256)) { *packet++=253; int3store(packet,(ulong) length); return (char*) packet+3; } *packet++=254; int8store(packet,length); return (char*) packet+9; } char * net_store_data(char *to,const char *from) { uint length=strlen(from); to=net_store_length(to,(ulonglong) length); memcpy(to,from,length); return to+length; } char * net_store_data(char *to,long from) { char buff[20]; uint length=(uint) (int2str(from,buff,10)-buff); to=net_store_length(to,(ulonglong) length); memcpy(to,buff,length); return to+length; } bool net_store_null(String *packet) { return packet->append((char) 251); } bool net_store_data(String *packet,const char *from,uint length) { uint packet_length=packet->length(); if (packet_length+5+length > packet->alloced_length() && packet->realloc(packet_length+5+length)) return 1; char *to=(char*) net_store_length((char*) packet->ptr()+packet_length, (ulonglong) length); memcpy(to,from,length); packet->length((uint) (to+length-packet->ptr())); return 0; } bool net_store_data(String *packet,const char *from) { uint length=strlen(from); uint packet_length=packet->length(); if (packet_length+5+length > packet->alloced_length() && packet->realloc(packet_length+5+length)) return 1; char *to=(char*) net_store_length((char*) packet->ptr()+packet_length, (ulonglong) length); memcpy(to,from,length); packet->length((uint) (to+length-packet->ptr())); return 0; } bool net_store_data(String *packet,ulong from) { char buff[20]; return net_store_data(packet,(char*) buff, (uint) (int2str(from,buff,10)-buff)); }