#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <glob.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
Go to the source code of this file.
Data Structures | |
struct | FDIO_s |
RPMIO Utilities. | |
#define | fdFileno(_fd) fdio->_fileno(_fd) |
#define | fdOpen(_path, _flags, _mode) fdio->_open((_path), (_flags), (_mode)) |
#define | fdRead(_fd, _buf, _count) fdio->read((_fd), (_buf), (_count)) |
#define | fdWrite(_fd, _buf, _count) fdio->write((_fd), (_buf), (_count)) |
#define | fdClose(_fd) fdio->close(_fd) |
#define | fdLink(_fd, _msg) fdio->_fdref(_fd, _msg, __FILE__, __LINE__) |
#define | fdFree(_fd, _msg) fdio->_fdderef(_fd, _msg, __FILE__, __LINE__) |
#define | fdNew(_msg) fdio->_fdnew(_msg, __FILE__, __LINE__) |
#define | timedRead ufdio->read |
typedef enum ftperrCode_e | ftperrCode |
FTP and HTTP error codes. | |
enum | ftperrCode_e { FTPERR_BAD_SERVER_RESPONSE = -1, FTPERR_SERVER_IO_ERROR = -2, FTPERR_SERVER_TIMEOUT = -3, FTPERR_BAD_HOST_ADDR = -4, FTPERR_BAD_HOSTNAME = -5, FTPERR_FAILED_CONNECT = -6, FTPERR_FILE_IO_ERROR = -7, FTPERR_PASSIVE_ERROR = -8, FTPERR_FAILED_DATA_CONNECT = -9, FTPERR_FILE_NOT_FOUND = -10, FTPERR_NIC_ABORT_IN_PROGRESS = -11, FTPERR_UNKNOWN = -100 } |
FTP and HTTP error codes. More... | |
off_t | fdSize (FD_t fd) |
FD_t | fdDup (int fdno) |
int | fdFileno (void *cookie) |
FD_t | fdOpen (const char *path, int flags, mode_t mode) |
ssize_t | fdRead (void *cookie, char *buf, size_t count) |
ssize_t | fdWrite (void *cookie, const char *buf, size_t count) |
int | fdClose (void *cookie) |
FD_t | fdLink (void *cookie, const char *msg) |
FD_t | fdFree (FD_t fd, const char *msg) |
FD_t | fdNew (const char *msg) |
int | fdWritable (FD_t fd, int secs) |
int | fdReadable (FD_t fd, int secs) |
int | rpmioMkpath (const char *path, mode_t mode, uid_t uid, gid_t gid) |
Insure that directories in path exist, creating as needed. | |
const char *const | ftpStrerror (int errorNumber) |
void * | ufdGetUrlinfo (FD_t fd) |
const char * | urlStrerror (const char *url) |
int | ufdCopy (FD_t sfd, FD_t tfd) |
int | ufdGetFile (FD_t sfd, FD_t tfd) |
int | timedRead (FD_t fd, void *bufptr, int length) |
FDIO_t | fdio |
FDIO_t | fpio |
FDIO_t | ufdio |
FDIO_t | gzdio |
FDIO_t | bzdio |
FDIO_t | fadio |
RPMIO Vectors. | |
typedef ssize_t(* | fdio_read_function_t )(void *cookie, char *buf, size_t nbytes) |
typedef ssize_t(* | fdio_write_function_t )(void *cookie, const char *buf, size_t nbytes) |
typedef int(* | fdio_seek_function_t )(void *cookie, _libio_pos_t pos, int whence) |
typedef int(* | fdio_close_function_t )(void *cookie) |
typedef FD_t(* | fdio_ref_function_t )(void *cookie, const char *msg, const char *file, unsigned line) |
typedef FD_t(* | fdio_deref_function_t )(FD_t fd, const char *msg, const char *file, unsigned line) |
typedef FD_t(* | fdio_new_function_t )(const char *msg, const char *file, unsigned line) |
typedef int(* | fdio_fileno_function_t )(void *cookie) |
typedef FD_t(* | fdio_open_function_t )(const char *path, int flags, mode_t mode) |
typedef FD_t(* | fdio_fopen_function_t )(const char *path, const char *fmode) |
typedef void *(* | fdio_ffileno_function_t )(FD_t fd) |
typedef int(* | fdio_fflush_function_t )(FD_t fd) |
RPMRPC Vectors. | |
typedef int(* | fdio_mkdir_function_t )(const char *path, mode_t mode) |
typedef int(* | fdio_chdir_function_t )(const char *path) |
typedef int(* | fdio_rmdir_function_t )(const char *path) |
typedef int(* | fdio_rename_function_t )(const char *oldpath, const char *newpath) |
typedef int(* | fdio_unlink_function_t )(const char *path) |
typedef int(* | fdio_stat_function_t )(const char *path, struct stat *st) |
typedef int(* | fdio_lstat_function_t )(const char *path, struct stat *st) |
typedef int(* | fdio_access_function_t )(const char *path, int amode) |
RPMIO Interface. | |
const char * | Fstrerror (FD_t fd) |
strerror(3) clone. | |
size_t | Fread (void *buf, size_t size, size_t nmemb, FD_t fd) |
fread(3) clone. | |
size_t | Fwrite (const void *buf, size_t size, size_t nmemb, FD_t fd) |
fwrite(3) clone. | |
int | Fseek (FD_t fd, _libio_off_t offset, int whence) |
fseek(3) clone. | |
int | Fclose (FD_t fd) |
fclose(3) clone. | |
FD_t | Fdopen (FD_t ofd, const char *fmode) |
FD_t | Fopen (const char *path, const char *fmode) |
fopen(3) clone. | |
int | Fflush (FD_t fd) |
fflush(3) clone. | |
int | Ferror (FD_t fd) |
ferror(3) clone. | |
int | Fileno (FD_t fd) |
fileno(3) clone. | |
int | Fcntl (FD_t fd, int op, void *lip) |
fcntl(2) clone. | |
RPMRPC Interface. | |
int | Mkdir (const char *path, mode_t mode) |
mkdir(2) clone. | |
int | Chdir (const char *path) |
chdir(2) clone. | |
int | Rmdir (const char *path) |
rmdir(2) clone. | |
int | Rename (const char *oldpath, const char *newpath) |
rename(2) clone. | |
int | Link (const char *oldpath, const char *newpath) |
link(2) clone. | |
int | Unlink (const char *path) |
unlink(2) clone. | |
int | Readlink (const char *path, char *buf, size_t bufsiz) |
readlink(2) clone. | |
int | Stat (const char *path, struct stat *st) |
stat(2) clone. | |
int | Lstat (const char *path, struct stat *st) |
lstat(2) clone. | |
int | Access (const char *path, int amode) |
access(2) clone. | |
int | Glob (const char *pattern, int flags, int errfunc(const char *epath, int eerrno), glob_t *pglob) |
glob(3) clone. | |
void | Globfree (glob_t *pglob) |
globfree(3) clone. | |
DIR * | Opendir (const char *path) |
opendir(3) clone. | |
dirent * | Readdir (DIR *dir) |
readdir(3) clone. | |
int | Closedir (DIR *dir) |
closedir(3) clone. | |
Typedefs | |
typedef pgpDig_s * | pgpDig |
typedef pgpDigParams_s * | pgpDigParams |
typedef _FD_s * | FD_t |
typedef FDIO_s * | FDIO_t |
Functions | |
int | xislower (int c) |
int | xisupper (int c) |
int | xisalpha (int c) |
int | xisdigit (int c) |
int | xisalnum (int c) |
int | xisblank (int c) |
int | xisspace (int c) |
int | xtolower (int c) |
int | xtoupper (int c) |
int | xstrcasecmp (const char *s1, const char *s2) |
int | xstrncasecmp (const char *s1, const char *s2, size_t n) |
Definition in file rpmio.h.
|
|
|
Definition at line 471 of file rpmio.h. Referenced by __fdClose(), __fdRead(), __fdWrite(), fdFgets(), fdReadable(), fdSeek(), fdWritable(), Ferror(), Fopen(), ftpAbort(), ftpLogin(), ftpReq(), httpReq(), ufdRead(), and urlConnect(). |
|
Definition at line 522 of file rpmio.h. Referenced by __fdClose(), closeCallback(), delTE(), Fclose(), fsmTeardown(), ftpAbort(), ftpCmd(), ftpFileDone(), manageFile(), packageBinaries(), packageSources(), rpmShowProgress(), rpmtsFree(), rpmtsSetScriptFd(), ufdClose(), and urlConnect(). |
|
Definition at line 513 of file rpmio.h. Referenced by closeCallback(), Fclose(), Fdopen(), fsmSetup(), ftpLogin(), ftpNLST(), ftpOpen(), ftpReq(), httpOpen(), httpReq(), manageFile(), rpmfd_Fopen(), rpmInstallSourcePackage(), rpmShowProgress(), rpmtsSetScriptFd(), ufdOpen(), and urlConnect(). |
|
Definition at line 531 of file rpmio.h. Referenced by __fdOpen(), fdDup(), ftpOpen(), httpOpen(), packageBinaries(), packageSources(), rewriteRPM(), and urlConnect(). |
|
|
|
|
|
|
|
Definition at line 619 of file rpmio.h. Referenced by ftpAbort(), headerRead(), makeGPGSignature(), makePGPSignature(), readLead(), rpmReadHeader(), and rpmReadSignature(). |
|
FTP and HTTP error codes.
|
|
|
|
|
|
|
fclose(3) clone.
Definition at line 2680 of file rpmio.c. References DBGIO, fdbg(), fdFree, fdGetFdno(), fdGetFILE, fdio_close_function_t, FDIOVEC, fdLink, fdPop(), FDSANE, fdSetFp(), fpio, _FD_s::fps, _FDSTACK_s::io, _FD_s::nfps, and ufdClose(). Referenced by addFileToTagAux(), closeCallback(), closeSpec(), cpio_doio(), defaultMachine(), domd5(), doReadRC(), doScript(), fsmStage(), ftsStashLatest(), IDTXglob(), isCompressed(), isSpecFile(), main(), makeGPGSignature(), makeHDRSignature(), makePGPSignature(), makeTempFile(), manageFile(), processPackageFiles(), readIcon(), readLine(), readRPM(), rewriteRPM(), rpmcliSign(), rpmfd_dealloc(), rpmfd_free(), rpmfd_init(), rpmGraph(), rpmHeaderFromFD(), rpmHeaderFromFile(), rpmInitMacros(), rpmInstall(), rpmInstallSourcePackage(), rpmioSlurp(), rpmMergeHeadersFromFD(), rpmpsmStage(), rpmQueryVerify(), rpmShowProgress(), rpmts_dealloc(), rpmts_free(), rpmts_HdrFromFdno(), rpmtsCallback(), rpmtsSolve(), runScript(), showVerifyPackage(), ufdGetFile(), urlGetFile(), writeRPM(), and XurlFree(). |
|
fcntl(2) clone.
Definition at line 3080 of file rpmio.c. References Fileno(). |
|
|
|
Definition at line 222 of file rpmio.c. References DBGIO, fdbg(), fdNew, and fdSetFdno(). Referenced by cpio_doio(), domd5(), main(), readRPM(), rpmHeaderFromFD(), rpmMergeHeadersFromFD(), rpmpsmStage(), rpmts_HdrFromFdno(), rpmts_setattr(), rpmtsCallback(), runScript(), showVerifyPackage(), and ufdOpen(). |
|
|
|
|
|
|
|
|
|
Definition at line 2834 of file rpmio.c. References FDIO_s::close, cvtfmode(), DBGIO, fdbg(), fdGetFp(), fdLink, fdPush(), FDSANE, fdSetFp(), Fileno(), fpio, noLibio, FDIO_s::read, FDIO_s::seek, and FDIO_s::write. Referenced by cpio_doio(), doScript(), Fopen(), main(), and rpmpsmStage(). |
|
|
|
Definition at line 528 of file rpmio.c. References errno, and fdFileno. Referenced by fdFgets(), ftpAbort(), ufdClose(), and ufdRead(). |
|
Definition at line 197 of file rpmio.c. References _FD_s::contentLength, DBGIO, FDSANE, Fileno(), URL_IS_DASH, URL_IS_FTP, URL_IS_HTTP, URL_IS_PATH, URL_IS_UNKNOWN, and _FD_s::urlType. Referenced by doReadRC(), readIcon(), and rpmioSlurp(). |
|
Definition at line 488 of file rpmio.c. References _rpmio_debug, errno, fdFileno, and strerror(). Referenced by checkResponse(), ftpLogin(), httpReq(), and ufdWrite(). |
|
|
|
ferror(3) clone.
Definition at line 3031 of file rpmio.c. References DBGIO, _FD_s::errcookie, fdbg(), fdFileno, fdGetFILE, fpio, _FD_s::fps, _FDSTACK_s::io, _FD_s::nfps, and _FD_s::syserrno. Referenced by addFileToTagAux(), cpio_copy(), defaultMachine(), domd5(), doReadRC(), doScript(), fsmStage(), ftsStashLatest(), IDTXglob(), isCompressed(), isSpecFile(), main(), makeGPGSignature(), makeHDRSignature(), makePGPSignature(), makeTempFile(), manageFile(), processPackageFiles(), readIcon(), readLine(), readRPM(), rpmcliSign(), rpmfd_Fopen(), rpmfd_init(), rpmGraph(), rpmInitMacros(), rpmInstall(), rpmioSlurp(), rpmpsmStage(), rpmQueryVerify(), rpmReadRC(), rpmShowProgress(), rpmtsSolve(), runScript(), urlGetFile(), and writeRPM(). |
|
fflush(3) clone.
Definition at line 3011 of file rpmio.c. References fdGetFILE, fdGetFp(), fdGetIo(), and fpio. Referenced by cpio_doio(), expandRegular(), rpmpsmStage(), and writeRPM(). |
|
fileno(3) clone.
Definition at line 3066 of file rpmio.c. References DBGIO, fdbg(), _FDSTACK_s::fdno, _FD_s::fps, and _FD_s::nfps. Referenced by cpio_doio(), doScript(), Fcntl(), Fdopen(), fdSize(), makeTempFile(), printSize(), rpmpsmStage(), rpmReadPackageFile(), runScript(), ufdOpen(), and writeRPM(). |
|
fopen(3) clone.
Definition at line 2941 of file rpmio.c. References cvtfmode(), fdClose, fdFileno, fdGetFdno(), fdGetFp(), Fdopen(), fdOpen, fdPush(), fpio, ufdOpen(), URL_IS_DASH, URL_IS_FTP, URL_IS_HTTP, URL_IS_PATH, URL_IS_UNKNOWN, and urlIsURL(). Referenced by addFileToTagAux(), defaultMachine(), domd5(), doReadRC(), fsmStage(), ftsStashLatest(), IDTXglob(), isCompressed(), isSpecFile(), main(), makeGPGSignature(), makeHDRSignature(), makePGPSignature(), makeTempFile(), manageFile(), processPackageFiles(), readIcon(), readLine(), readRPM(), rpmcliSign(), rpmfd_Fopen(), rpmfd_init(), rpmGraph(), rpmHeaderFromFile(), rpmInitMacros(), rpmInstall(), rpmioSlurp(), rpmpsmStage(), rpmQueryVerify(), rpmReadRC(), rpmShowProgress(), rpmtsSolve(), runScript(), urlGetFile(), and writeRPM(). |
|
fread(3) clone.
Definition at line 2601 of file rpmio.c. References DBGIO, fdbg(), fdGetFILE, fdGetIo(), fdio_read_function_t, FDIOVEC, FDSANE, and fpio. Referenced by copyFile(), cpio_copy(), defaultMachine(), domd5(), doReadRC(), fsmStage(), isCompressed(), isSpecFile(), main(), readFile(), readIcon(), readRPM(), rpmioSlurp(), rpmReadPackageFile(), ufdCopy(), and writeRPM(). |
|
fseek(3) clone.
Definition at line 2648 of file rpmio.c. References _libio_off_t, _libio_pos_t, DBGIO, fdbg(), fdGetFILE, fdGetIo(), fdio_seek_function_t, FDIOVEC, FDSANE, and fpio. Referenced by readRPM(), and writeRPM(). |
|
strerror(3) clone.
Definition at line 2590 of file rpmio.c. References errno, FDSANE, getFdErrstr(), and strerror(). Referenced by copyFile(), cpio_copy(), doReadRC(), IDTXglob(), isCompressed(), isSpecFile(), main(), manageFile(), processPackageFiles(), readFile(), readIcon(), readLead(), readRPM(), rpmfd_Fopen(), rpmfd_init(), rpmGraph(), rpmpsmStage(), rpmQueryVerify(), rpmReadPackageFile(), rpmReadRC(), rpmReSign(), rpmShowProgress(), rpmtsSolve(), urlGetFile(), and writeRPM(). |
|
Definition at line 634 of file rpmio.c. References _, FTPERR_BAD_HOST_ADDR, FTPERR_BAD_HOSTNAME, FTPERR_BAD_SERVER_RESPONSE, FTPERR_FAILED_CONNECT, FTPERR_FAILED_DATA_CONNECT, FTPERR_FILE_IO_ERROR, FTPERR_FILE_NOT_FOUND, FTPERR_NIC_ABORT_IN_PROGRESS, FTPERR_PASSIVE_ERROR, FTPERR_SERVER_IO_ERROR, FTPERR_SERVER_TIMEOUT, and FTPERR_UNKNOWN. Referenced by ftpLogin(), ftpReq(), httpReq(), rpmInstall(), tcpConnect(), ufdCopy(), and urlStrerror(). |
|
fwrite(3) clone.
Definition at line 2623 of file rpmio.c. References DBGIO, fdbg(), fdGetFILE, fdGetIo(), fdio_write_function_t, FDIOVEC, FDSANE, and fpio. Referenced by copyFile(), cpio_copy(), fsmStage(), headerWrite(), main(), rpmWriteSignature(), runScript(), ufdCopy(), writeLead(), and writeRPM(). |
|
Insure that directories in path exist, creating as needed.
Definition at line 3089 of file rpmio.c. References alloca(), errno, Mkdir(), RPMMESS_DEBUG, rpmMessage, Stat(), and stpcpy(). Referenced by db3open(), and makeTempFile(). |
|
|
|
Definition at line 1283 of file rpmio.c. References DBGIO, Fread(), FTPERR_FILE_IO_ERROR, ftpStrerror(), Fwrite(), RPMCALLBACK_INST_OPEN_FILE, RPMCALLBACK_INST_PROGRESS, urlNotify, urlNotifyCount, and urlNotifyData. Referenced by main(), and ufdGetFile(). |
|
Definition at line 1393 of file rpmio.c. References Fclose(), FDSANE, and ufdCopy(). Referenced by urlGetFile(). |
|
Definition at line 1658 of file rpmio.c. References FDSANE, _FD_s::url, and urlLink. |
|
Definition at line 678 of file rpmio.c. References errno, ftpStrerror(), urlinfo_s::openError, strerror(), URL_IS_FTP, URL_IS_HTTP, urlIsURL(), and urlSplit(). |
|
Definition at line 660 of file rpmio.h. References xisalpha(), and xisdigit(). Referenced by expandMacro(), parseRCPOT(), rdToken(), and rpmvercmp(). |
|
Definition at line 654 of file rpmio.h. References xislower(), and xisupper(). Referenced by doDefine(), doUndefine(), parseBits(), rdToken(), rpmvercmp(), and xisalnum(). |
|
Definition at line 663 of file rpmio.h. Referenced by xisspace(). |
|
Definition at line 657 of file rpmio.h. Referenced by defaultMachine(), doFoo(), getHostAddress(), parseEVR(), parseForDev(), parseFormat(), rdToken(), rpmtsInitIterator(), rpmvercmp(), and xisalnum(). |
|
Definition at line 648 of file rpmio.h. Referenced by xisalpha(), and xtoupper(). |
|
Definition at line 666 of file rpmio.h. References xisblank(). Referenced by addChangelog(), copyNextLine(), db3New(), dbiTagsInit(), doReadRC(), findLastChar(), findPreambleTag(), isPart(), machCompatCacheAdd(), parseBits(), rdToken(), readLine(), stripTrailingBlanksStringBuf(), and unsatisfiedDepend(). |
|
Definition at line 651 of file rpmio.h. Referenced by xisalpha(), and xtolower(). |
|
Definition at line 670 of file rpmio.h. References xisupper(). Referenced by rpmRebuildTargetVars(), tagName(), xstrcasecmp(), and xstrncasecmp(). |
|
Definition at line 673 of file rpmio.h. References xislower(). |
|
Definition at line 640 of file rpmio.h. Referenced by fdbg(). |
|
|
|
|
|
Definition at line 628 of file rpmio.h. Referenced by Fclose(), fdbg(), Fdopen(), Ferror(), Fflush(), Fopen(), Fread(), Fseek(), and Fwrite(). |
|
Definition at line 636 of file rpmio.h. Referenced by fdbg(). |
|
Definition at line 632 of file rpmio.h. Referenced by fdbg(), ftpOpen(), httpOpen(), ufdOpen(), and urlConnect(). |