Annotation of libaitio/inc/aitio.h, revision 1.11

1.1       misho       1: /*************************************************************************
1.8       misho       2: * (C) 2010 AITNET ltd - Sofia/Bulgaria - <misho@aitnet.org>
                      3: *  by Michael Pounov <misho@elwix.org>
1.1       misho       4: *
                      5: * $Author: misho $
1.11    ! misho       6: * $Id: aitio.h,v 1.10.2.5 2011/08/26 13:19:34 misho Exp $
1.1       misho       7: *
1.8       misho       8: **************************************************************************
                      9: The ELWIX and AITNET software is distributed under the following
                     10: terms:
                     11: 
                     12: All of the documentation and software included in the ELWIX and AITNET
                     13: Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org>
                     14: 
                     15: Copyright 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
                     16:        by Michael Pounov <misho@elwix.org>.  All rights reserved.
                     17: 
                     18: Redistribution and use in source and binary forms, with or without
                     19: modification, are permitted provided that the following conditions
                     20: are met:
                     21: 1. Redistributions of source code must retain the above copyright
                     22:    notice, this list of conditions and the following disclaimer.
                     23: 2. Redistributions in binary form must reproduce the above copyright
                     24:    notice, this list of conditions and the following disclaimer in the
                     25:    documentation and/or other materials provided with the distribution.
                     26: 3. All advertising materials mentioning features or use of this software
                     27:    must display the following acknowledgement:
                     28: This product includes software developed by Michael Pounov <misho@elwix.org>
                     29: ELWIX - Embedded LightWeight unIX and its contributors.
                     30: 4. Neither the name of AITNET nor the names of its contributors
                     31:    may be used to endorse or promote products derived from this software
                     32:    without specific prior written permission.
                     33: 
                     34: THIS SOFTWARE IS PROVIDED BY AITNET AND CONTRIBUTORS ``AS IS'' AND
                     35: ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     36: IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     37: ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
                     38: FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     39: DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     40: OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     41: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     42: LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     43: OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     44: SUCH DAMAGE.
                     45: */
1.1       misho      46: #ifndef __AITIO_H
                     47: #define __AITIO_H
                     48: 
                     49: 
1.8       misho      50: #include <assert.h>
1.7       misho      51: #include <openssl/evp.h>
                     52: 
                     53: 
1.8       misho      54: #define VACUUM_LEFT    1
                     55: #define VACUUM_BETWEEN 2
                     56: 
                     57: 
1.9       misho      58: typedef void ** sarr_seg_t;
                     59: typedef struct _tagSplitArray {
                     60:        int             sarr_num;
                     61:        int             sarr_seg;
                     62:        int             sarr_siz;
                     63:        sarr_seg_t      *sarr_data;
                     64: } sarr_t;
                     65: 
1.8       misho      66: typedef struct _tagArray {
                     67:        int     arr_num;
                     68:        void    **arr_data;
                     69: } array_t;
                     70: 
1.2       misho      71: typedef struct _tagURLItem {
                     72:        int     vallen;
                     73:        char    *value;
                     74: } url_Item_t;
                     75: 
                     76: struct tagIOURL {
                     77:        unsigned char   url_line[BUFSIZ];
                     78: 
                     79:        url_Item_t      url_tech;
                     80:        url_Item_t      url_user;
                     81:        url_Item_t      url_pass;
                     82:        url_Item_t      url_host;
                     83:        url_Item_t      url_port;
                     84:        url_Item_t      url_path;
                     85:        url_Item_t      url_args;
                     86: 
                     87:        char            *url_reserved;
                     88: };
                     89: 
1.6       misho      90: struct tagReqXML {
                     91:        unsigned char   xml_line[BUFSIZ];
                     92: 
                     93:        url_Item_t      xml_namespace;
                     94:        union {
                     95:                url_Item_t      container;
                     96:                url_Item_t      path;
                     97:        }               xml_node;
                     98:        url_Item_t      xml_data;
                     99:        url_Item_t      xml_attribute;
                    100:        url_Item_t      xml_value;
                    101: };
                    102: 
1.3       misho     103: 
1.1       misho     104: // io_GetErrno() Get error code of last operation
                    105: inline int io_GetErrno();
                    106: // io_GetError() Get error text of last operation
                    107: inline const char *io_GetError();
                    108: 
                    109: 
                    110: /*
                    111:  * ioPromptRead() Read data from input h[0] with prompt to output h[1]
                    112:  * @h = file handles h[0] = input, h[1] = output, if NULL use stdin, stdout
                    113:  * @csPrompt = Prompt before input, may be NULL
                    114:  * @psData = Readed data
                    115:  * @dataLen = Length of data
                    116:  * return: 0 EOF; -1 error:: can`t read; >0 count of readed chars
                    117: */
                    118: int ioPromptRead(int *h, const char *csPrompt, char * __restrict psData, int dataLen);
                    119: /*
                    120:  * ioPromptPassword() Read password from input h[0] with prompt to output h[1]
                    121:  * @h = file handles h[0] = input, h[1] = output, if NULL use stdin, stdout
                    122:  * @csPrompt = Prompt before input, may be NULL
                    123:  * @psPass = Readed password
                    124:  * @passLen = Length of password
                    125:  * @confirm = Confirm password, 0 - get password, !=0 Ask for confirmation
                    126:  * return: 0 EOF; -1 error:: can`t read; >0 count of readed chars
                    127: */
                    128: int ioPromptPassword(int *h, const char *csPrompt, char * __restrict psPass, int passLen, int confirm);
                    129: 
                    130: /*
                    131:  * ioRegexVerify() Function for verify data match in regex expression
                    132:  * @csRegex = Regulare expression pattern
                    133:  * @csData = Data for check and verify
                    134:  * @startPos = Return start positions
                    135:  * @endPos = Return end positions
                    136:  * return: NULL not match or error; !=NULL begin of matched data
                    137: */
                    138: const char *ioRegexVerify(const char *csRegex, const char *csData, int *startPos, int *endPos);
                    139: /*
                    140:  * ioRegexGet() Function for get data match in regex expression
                    141:  * @csRegex = Regulare expression pattern
                    142:  * @csData = Data from get
                    143:  * @psString = Returned string if match
                    144:  * @strLen = Length of string
                    145:  * return: 0 not match; >0 count of returned chars
                    146: */
                    147: int ioRegexGet(const char *csRegex, const char *csData, char * __restrict psString, int strLen);
                    148: /*
                    149:  * ioRegexReplace() Function for replace data match in regex expression with newdata
                    150:  * @csRegex = Regulare expression pattern
                    151:  * @csData = Source data
                    152:  * @csNew = Data for replace
                    153:  * return: NULL not match or error; !=NULL allocated new string, must be free after use!
                    154: */
                    155: char *ioRegexReplace(const char *csRegex, const char *csData, const char *csNew);
                    156: 
1.2       misho     157: /*
1.6       misho     158:  * ioVarAst() Function for evaluate string like asterisk variable "{text[:[-]#[:#]]}"
                    159:  * @csString = Input string
                    160:  * return: NULL error, !=NULL Allocated new string evaluated from input string, must be free()
                    161: */
                    162: char *ioVarAst(const char *csString);
                    163: 
                    164: /*
1.2       misho     165:  * io_Path2File() Parse and make path/filename pair
                    166:  * @csArgs = Input argument line
                    167:  * @psPath = Output Path, if ==NULL path not returned
                    168:  * @pathLen = Size of path array
                    169:  * @psFile = Output File
                    170:  * @fileLen = Size of file array
                    171:  * return: 0 error format; -1 error:: can`t read; >0 ok, number of readed items
                    172: */
                    173: inline int io_Path2File(const char * __restrict csArgs, char * __restrict psPath, int pathLen, 
                    174:                char * __restrict psFile, int fileLen);
                    175: 
                    176: /*
1.4       misho     177:  * io_UnquotStr() Remove quots from input text string 
                    178:  * @psLine = Text string
                    179:  * return: 0 nothing to do; 1 successful unquoted string
                    180: */
1.5       misho     181: inline int io_UnquotStr(unsigned char * __restrict psLine);
1.4       misho     182: /*
                    183:  * io_LTrimStr() Remove left whitespaces from text string
                    184:  * @psLine = Text string
                    185:  * return: 0 nothing to do; !=0 Removed bytes
                    186: */
1.5       misho     187: inline int io_LTrimStr(unsigned char * __restrict psLine);
1.4       misho     188: /*
                    189:  * io_RTrimStr() Remove right whitespaces from text string
                    190:  * @psLine = Text string
                    191:  * return: 0 nothing to do; !=0 Removed bytes
                    192: */
1.5       misho     193: inline int io_RTrimStr(unsigned char * __restrict psLine);
1.4       misho     194: /*
                    195:  * io_TrimStr() Remove left and right whitespaces from text string
                    196:  * @psLine = Text string
                    197:  * return: 0 nothing to do; !=0 Removed bytes
                    198: */
1.5       misho     199: inline int io_TrimStr(unsigned char * __restrict psLine);
1.4       misho     200: /*
1.5       misho     201:  * io_Ch2Hex() Convert from Char string to Hex string
1.4       misho     202:  * @psLine = Text string
                    203:  * @lineLen = Length of Text string
1.5       misho     204:  * return: NULL nothing to do or error; !=0 Allocated new converted data without term\0 (must be free)
1.4       misho     205: */
1.5       misho     206: inline unsigned char *io_Ch2Hex(unsigned char *psLine, int lineLen);
1.4       misho     207: /*
1.5       misho     208:  * io_Hex2Ch() Convert from Hex string to Char string
1.4       misho     209:  * @psLine = Text string
                    210:  * @lineLen = Length of Text string
                    211:  * return: NULL nothing to do or error; !=0 Allocated new converted string(must be free)
                    212: */
1.5       misho     213: inline char *io_Hex2Ch(unsigned char *psLine, int lineLen);
1.4       misho     214: 
                    215: /*
1.8       misho     216:  * io_arrayInit() - Create and initialize dynamic array
                    217:  * @numItems = Number of Items
                    218:  * return: NULL error, != NULL allocated memory for array
                    219:  */
                    220: inline array_t *io_arrayInit(int numItems);
                    221: /*
1.10      misho     222:  * io_arrayDestroy() - Free and destroy dynamic array
1.8       misho     223:  * @parr = Array
                    224:  * return: none
                    225:  */
                    226: inline void io_arrayDestroy(array_t ** __restrict parr);
                    227: /*
1.10      misho     228:  * io_arrayFree() - Free all data in dynamic array items
1.8       misho     229:  *     (WARNING! If assign static array dont use this!!!)
                    230:  * @arr = Array
                    231:  * return: none
                    232:  */
                    233: inline void io_arrayFree(array_t * __restrict arr);
                    234: /*
1.10      misho     235:  * io_arrayFrom() - Create and fill array from array with pointers
1.11    ! misho     236:  * @pargv = Array with pointers
1.10      misho     237:  * @argc = Number of Items, if 0 walk through argv and stop when reach NULL item
1.11    ! misho     238:  * return: NULL error, != NULL allocated new array
1.10      misho     239:  */
1.11    ! misho     240: inline array_t *io_arrayFrom(const char *** __restrict pargv, int argc);
1.10      misho     241: /*
                    242:  * io_arrayTo() - Create and fill array with pointers from dynamic array
                    243:  * @arr = Array
1.11    ! misho     244:  * return: NULL error, != NULL allocated memory for array, NULL terminated
1.10      misho     245:  */
                    246: inline char **io_arrayTo(array_t * __restrict arr);
                    247: /*
1.8       misho     248:  * io_arrayLen() - Get last used element in dynamic array (array Length)
                    249:  * @arr = Array
                    250:  * return: -1 error, 0 empty or >0 position of last used element
                    251:  */
                    252: inline int io_arrayLen(array_t * __restrict arr);
                    253: /*
1.10      misho     254:  * io_arrayConcat() Concat source array to destination array
                    255:  * @dest = Destination array
                    256:  * @src = Source array
                    257:  * return: -1 error; >0 new count of destination array
                    258:  */
                    259: int io_arrayConcat(array_t * __restrict dest, array_t * __restrict src);
                    260: /*
1.8       misho     261:  * io_arrayGrow() - Grow/Shrink dynamic array, Use with care when it shrink!!!
                    262:  * @arr = Array
                    263:  * @newNumItems = Number of Items
                    264:  * return: -1 error, 0 ok
                    265:  */
                    266: int io_arrayGrow(array_t * __restrict arr, int newNumItems);
                    267: /*
                    268:  * io_arrayVacuum() - Vacuum dynamic array, empty elements will be deleted
                    269:  * @arr = Array
                    270:  * @fromWhere = 1 begin, 2 ALL empty elements
                    271:  * return: -1 error, 0 ok
                    272:  */
                    273: int io_arrayVacuum(array_t * __restrict arr, int fromWhere);
                    274: 
1.11    ! misho     275: #define io_arraySize(_arr)             (assert((_arr)), (_arr)->arr_num)
1.8       misho     276: 
1.11    ! misho     277: #define io_arrayGet(_arr, _d)          (assert((_arr) && (_arr)->arr_num > _d), *((_arr)->arr_data + _d))
        !           278: #define io_array(_arr, _d, _type)      (assert((_arr) && (_arr)->arr_num > _d), \
        !           279:                                                ((_type) *((_arr)->arr_data + _d)))
1.8       misho     280: #define io_arraySet(_arr, _d, _ptr)    do { \
1.11    ! misho     281:                                                assert((_arr) && (_arr)->arr_num > _d); \
        !           282:                                                *((_arr)->arr_data + _d) = (void*) (_ptr); \
1.8       misho     283:                                        } while (0)
1.11    ! misho     284: #define io_arrayDel(_arr, _d, _fri)    do { \
        !           285:                                                assert((_arr) && (_arr)->arr_num > _d); \
        !           286:                                                if (_fri) \
        !           287:                                                        free(*((_arr)->arr_data + _d)); \
        !           288:                                                *((_arr)->arr_data + _d) = NULL; \
1.9       misho     289:                                        } while (0)
1.8       misho     290: 
                    291: /*
                    292:  * io_arrayPush() - Push element into dynamic array like stack manner, place at first empty position
                    293:  * @arr = Array
                    294:  * @data = Element, if set NULL return only first empty position
                    295:  * return: -1 not found empty position, array is full!, >-1 return position of stored element into array
                    296:  */
                    297: inline int io_arrayPush(array_t * __restrict arr, void **data);
                    298: /*
                    299:  * io_arrayPop() - Pop element from dynamic array like stack manner, last used position
                    300:  * @arr = Array
1.11    ! misho     301:  * @data = Element, if set NULL return only last used position
1.8       misho     302:  * @delAfter = Delete after Pop element, !=0 delete element from array after return data
                    303:  * return: -1 not found used position, array is empty!, >-1 return element position
                    304:  */
                    305: inline int io_arrayPop(array_t * __restrict arr, void ** __restrict data, int delAfter);
                    306: 
                    307: /*
                    308:  * io_argsNum() Parse and calculate number of arguments
                    309:  * @csArgs = Input arguments line
                    310:  * @csDelim = Delimiter(s) for separate
                    311:  * return: 0 error format; -1 error:: can`t read; >0 ok, number of items
                    312:  */
                    313: inline int io_argsNum(const char *csArgs, const char *csDelim);
                    314: 
                    315: /*
                    316:  * io_arrayMake() Parse and make array from arguments ... (input string will be modified!!! 
                    317:  *     and output array must be free with io_arrayDestroy() after use!)
                    318:  * @psArgs = Input arguments line, after execute string is modified!!!
                    319:  * @nargs = Maximum requested count of arguments from input string psArgs, if 0 all psArgs
                    320:  * @csDelim = Delimiter(s) for separate
                    321:  * @parr = Output array of arguments ... (must be free with io_arrayDestroy() after use!)
                    322:  * return: 0 error format; -1 error:: can`t read; >0 ok, number of readed items
                    323:  */
                    324: int io_arrayMake(char * __restrict psArgs, int nargs, const char *csDelim, 
                    325:                array_t ** __restrict parr);
                    326: 
                    327: /*
                    328:  * io_MakeAV() Parse and make attribute/value pair
                    329:  * @csArgs = Input argument line
                    330:  * @csDelim = Delimiter for separate
                    331:  * @psAttr = Output Attribute
                    332:  * @attrLen = Size of attribute array
                    333:  * @psValue = Output Value, if ==NULL this element not present value or not wanted for return
                    334:  * @valLen = Size of value array
                    335:  * return: 0 error format; -1 error:: can`t read; >0 ok, number of readed items
                    336: */
                    337: int io_MakeAV(const char * __restrict csArgs, const char *csDelim, 
                    338:                char * __restrict psAttr, int attrLen, char * __restrict psValue, int valLen);
                    339: 
1.9       misho     340: /*
                    341:  * io_sarrInit() - Create and initialize dynamic split-order array
                    342:  * @numItems = Number of Items
                    343:  * @segLen = Length of segment
                    344:  * return: NULL error, != NULL allocated memory for array
                    345:  */
                    346: inline sarr_t *io_sarrInit(int numItems, int segLen);
                    347: /*
                    348:  * io_sarrDestroy() - Free all data in dynamic split-order array and Destroy array
                    349:  * @parr = Array
                    350:  * return: none
                    351:  */
                    352: inline void io_sarrDestroy(sarr_t ** __restrict parr);
                    353: /*
                    354:  * io_sarrGrow() - Grow/Shrink dynamic split-order array, Use with care when it shrink!!!
                    355:  * @arr = Array
                    356:  * @newNumItems = Number of Items
                    357:  * return: -1 error, 0 ok
                    358:  */
                    359: int io_sarrGrow(sarr_t * __restrict arr, int newNumItems);
                    360: /*
                    361:  * io_sarrVacuum() - Vacuum dynamic split-order array, empty segments will be freed
                    362:  * @arr = Array
                    363:  * return: -1 error, >-1 freed segments
                    364:  */
                    365: inline int io_sarrVacuum(sarr_t * __restrict arr);
1.11    ! misho     366: #define io_sarrSize(_arr)              (assert((_arr)), (_arr)->sarr_num)
1.9       misho     367: /*
                    368:  * io_sarrGet() - Get element from dynamic split-order array
                    369:  * @arr = Array
                    370:  * @idx = Index (warning 1st element is at position 1)
                    371:  * return: NULL not found, !=NULL element
                    372:  */
                    373: inline void *io_sarrGet(sarr_t * __restrict arr, unsigned int idx);
                    374: /*
                    375:  * io_sarrGet2() - Always get element from dynamic split-order array
                    376:  *     Function automatic grow array. Good use for Hash tables! 
                    377:  * @arr = Array
                    378:  * @idx = Index (warning 1st element is at position 1)
                    379:  * return: NULL not found, !=NULL element
                    380:  */
                    381: void *io_sarrGet2(sarr_t * __restrict arr, unsigned int idx);
                    382: /*
                    383:  * io_sarrSet() - Set element to dynamic split-order array
                    384:  * @arr = Array
                    385:  * @idx = Index (warning 1st element is at position 1)
                    386:  * @data = Value
                    387:  * return: NULL error or empty, !=NULL old value in element
                    388:  */
                    389: inline void *io_sarrSet(sarr_t * __restrict arr, unsigned int idx, void *data);
1.11    ! misho     390: #define io_sarrDel(_arr, _idx)         io_sarrSet((_arr), _idx, NULL)
        !           391: #define io_sarr(_arr, _idx, _type)     (_type)io_sarrGet((_arr), _idx)
        !           392: /*
        !           393:  * io_sarr2array() - Convert from split-order array to dynamic array
        !           394:  * @sa = split array
        !           395:  * @sarrFree = after convert split array !=0 will be destroyed sarray
        !           396:  * return: NULL error or != NULL new array
        !           397:  */
        !           398: array_t *io_sarr2array(sarr_t ** __restrict sa, int sarrFree);
        !           399: /*
        !           400:  * io_array2sarr() - Convert from dynamic array to split-order array
        !           401:  * @a = array
        !           402:  * @segLen = Length of segment
        !           403:  * @arrFree = after convert array !=0 will be destroyed
        !           404:  * return: NULL error or != NULL new sarr
        !           405:  */
        !           406: sarr_t *io_array2sarr(array_t ** __restrict a, int segLen, int arrFree);
1.8       misho     407: 
                    408: /*
1.10      misho     409:  * io_CopyEnv() Copy environment to new environment array;
                    410:  * @oldenv = Environment array
                    411:  * return: NULL error; !=NULL Allocated new environment array(must be free)
                    412: */
                    413: char **io_CopyEnv(const char **oldenv);
                    414: /*
                    415:  * io_ExecArgs() Build exec arguments from other array
                    416:  * @psProg = Program name for execute
                    417:  * @oldarg = Arguments array
                    418:  * return: NULL error; !=NULL Allocated execution array(must be free)
                    419: */
                    420: char **io_ExecArgs(const char *psProg, const char **oldarg);
                    421: /*
                    422:  * io_FreeNullTerm() Free dynamic allocated null terminated array with strings
                    423:  * @arr = Pointer to array for free
                    424:  * return: none
                    425: */
                    426: inline void io_FreeNullTerm(char *** __restrict arr);
                    427: 
                    428: /*
1.2       misho     429:  * ioURLGet() Parse and get data from input URL
                    430:  * @csURL = Input URL line
                    431:  * @url = Output parsed URL
                    432:  * return: 0 error format not find tech:// and return URL like path; 
                    433:                -1 error:: can`t read; >0 ok, up bits for known elements
                    434: */
                    435: int ioURLGet(const char *csURL, struct tagIOURL *url);
                    436: /*
                    437:  * ioURLGetValue() Get value from parsed URL
                    438:  * @url = Input parsed URL
                    439:  * @csAttr = Attribute for search
                    440:  * @psValue = Return value of attribute, if ==NULL only check for existence of attribute
                    441:  * @valLen = Size of psValue array
                    442:  * return: 0 error attribute not find; -1 error:: can`t read; >0 ok, find at position
                    443: */
                    444: int ioURLGetValue(struct tagIOURL *url, const char *csAttr, char * __restrict psValue, int valLen);
                    445: /*
                    446:  * ioURLGetFile() Get file from parsed URL
                    447:  * @url = Input parsed URL
                    448:  * @psValue = Return filename, if not specified file in url path, replace with /
                    449:  * @valLen = Size of psValue array
                    450:  * return: -1 error:: can`t read; 0 ok
                    451: */
                    452: int ioURLGetFile(struct tagIOURL *url, char * __restrict psValue, int valLen);
                    453: 
1.3       misho     454: 
                    455: /*
1.6       misho     456:  * ioXMLGet() Parse and get data from input XML request string [ns:]container[|attribute[=value]][?data]
                    457:  * @csXML = Input XML request line
                    458:  * @xml = Output parsed XML request
                    459:  * return: 0 error format incorrect, -1 error:: can`t read; >0 ok readed elements bits
                    460: */
                    461: int ioXMLGet(const char *csXML, struct tagReqXML *xml);
                    462: 
                    463: 
                    464: /*
1.5       misho     465:  * ioMkDir() Function for racursive directory creation and validation
                    466:  * @csDir = Full directory path
                    467:  * @mode = Mode for directory creation if missing dir
                    468:  * return: -1 error, 0 directory path exist, >0 created missing dirs
                    469: */
                    470: int ioMkDir(const char *csDir, int mode);
                    471: 
1.6       misho     472: /*
                    473:  * ioWatchDirLoop() Function for watching changes in directory and fire callback
                    474:  * @csDir = Full directory path
                    475:  * @callback = Callback if raise event! nOp -1 delete, 0 change/move, 1 create
                    476:  * return: -1 error, !=-1 ok, number of total signaled events
                    477: */
                    478: int ioWatchDirLoop(const char *csDir, int (*callback)(const char *csName, int nOp));
                    479: 
1.5       misho     480: 
                    481: /*
                    482:  * io_rread() Raw VFS read function
                    483:  * @fd = File handle
                    484:  * @buf = Read buffer
                    485:  * @nbytes = Read buffer size
                    486:  * @offset = Read from position, if -1 read nbytes from current position
                    487:  * @update = Update file handle position !0
                    488:  * return: -1 error or !=-1 readed bytes
                    489:  */
                    490: inline int io_rread(int fd, void * __restrict buf, size_t nbytes, off_t offset, int update);
                    491: /*
                    492:  * io_rwrite() Raw VFS write function
                    493:  * @fd = File handle
                    494:  * @buf = Write buffer
                    495:  * @nbytes = Write bytes from buffer
                    496:  * @offset = Write at position, if -1 write nbytes from current position
                    497:  * @update = Update file handle position !0
                    498:  * return: -1 error or !=-1 writed bytes
                    499:  */
                    500: inline int io_rwrite(int fd, void * __restrict buf, size_t nbytes, off_t offset, int update);
                    501: 
                    502: /* Disk I/O helper macros */
                    503: #define io_read(f, b, n) io_rread(f, b, n, -1, 1)
                    504: #define io_write(f, b, n) io_rwrite(f, b, n, -1, 1)
                    505: 
                    506: 
                    507: /* Debug helper macros */
                    508: extern int io_Debug;
                    509: 
                    510: #define io_initDebug(x)                io_Debug = (x);
                    511: #define io_addDebug            io_Debug++
                    512: #define ioDEBUG(x, fmt, ...)   do { \
                    513:                                        assert((fmt)); \
                    514:                                        char str[STRSIZ] = { 0 }; \
1.11    ! misho     515:                                        snprintf(str, sizeof str, (fmt), ##__VA_ARGS__); \
1.5       misho     516:                                        if ((x) <= io_Debug) \
                    517:                                                syslog(LOG_DEBUG, "ioDebug(%d):%s(%d): %s\n", \
                    518:                                                                (x), __func__, __LINE__, str); \
                    519:                                } while (0)
                    520: 
                    521: #define ioERROR(x, fmt, ...)   do { \
                    522:                                        assert((fmt)); \
                    523:                                        char str[STRSIZ] = { 0 }; \
1.11    ! misho     524:                                        snprintf(str, sizeof str, (fmt), ##__VA_ARGS__); \
1.5       misho     525:                                        syslog(LOG_ERR, "ioError():%s(%d): #%d - %s\n", \
                    526:                                                         __func__, __LINE__, (x), str); \
                    527:                                } while (0)
                    528: #define io_sysERROR(x)         do { \
                    529:                                        if (x > 0 || errno) \
                    530:                                                syslog(LOG_ERR, "ioError(sys):%s(%d): #%d - %s\n", \
                    531:                                                                __func__, __LINE__, x > 0 ? x : errno, \
                    532:                                                                strerror(x > 0 ? x : errno)); \
                    533:                                } while (0)
                    534: #define io_aitERROR(ait)       do { \
                    535:                                        if (ait##_GetErrno()) \
                    536:                                                syslog(LOG_ERR, "ioError(ait):%s(%d): #%d - %s\n", \
                    537:                                                                __func__, __LINE__, ait##_GetErrno(), \
                    538:                                                                ait##_GetError()); \
                    539:                                } while (0)
1.3       misho     540: 
1.1       misho     541: 
1.7       misho     542: /* Crypto framework */
                    543: 
                    544: /*
                    545:  * ioCipher() Cipher wrapper for all supported crypto algorythms
                    546:  * @pInput = input buffer
                    547:  * @inLen = input buffer len
                    548:  * @ppOutput = output allocated buffe, must be free after use
                    549:  * @Cipher = cipher engine, like EVP_bf_cbc() or etc...
                    550:  * @pKey = key
                    551:  * @pIV = IV, salt (8 bytes)
                    552:  * @nMode = Mode 0 - decrypting or 1 - encrypting
                    553:  * return: 0 not present data or error!; >0 number of processed and returned bytes into ppOutput
                    554: */
                    555: int ioCipher(unsigned char *pInput, int inLen, unsigned char **ppOutput, const EVP_CIPHER *Cipher, 
                    556:                unsigned char *pKey, unsigned char *pIV, int nMode);
                    557: 
                    558: /*
                    559:  * io_Blowfish() Blowfish cipher algorythm, work with ASCII hex strings
                    560:  * @pInput = input buffer
                    561:  * @inLen = input buffer len
                    562:  * @ppOutput = output allocated buffe, must be free after use
                    563:  * @pKey = key
                    564:  * @pIV = IV, salt (8 bytes)
                    565:  * @nMode = Mode 0 - decrypting or 1 - encrypting
                    566:  * return: 0 not present data or error!; >0 number of processed and returned bytes into ppOutput
                    567: */
1.8       misho     568: int io_Blowfish(unsigned char *pInput, int inLen, unsigned char **ppOutput, 
                    569:                unsigned char *pKey, unsigned char *pIV, int nMode);
1.7       misho     570: 
                    571: 
1.1       misho     572: #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>