2001-02-11 00:47:40 +08:00
|
|
|
#ifndef H_FSM
|
|
|
|
#define H_FSM
|
|
|
|
|
2001-04-10 20:36:45 +08:00
|
|
|
/** \ingroup payload
|
|
|
|
* \file lib/fsm.h
|
|
|
|
* File state machine to handle a payload within an rpm package.
|
2001-02-11 00:47:40 +08:00
|
|
|
*/
|
|
|
|
|
2007-11-23 18:39:29 +08:00
|
|
|
#include "lib/cpio.h"
|
2007-12-03 04:50:55 +08:00
|
|
|
#include <rpmfi.h>
|
2001-02-11 00:47:40 +08:00
|
|
|
|
2001-10-18 00:43:36 +08:00
|
|
|
extern int _fsm_debug;
|
|
|
|
|
2001-02-11 00:47:40 +08:00
|
|
|
/**
|
|
|
|
*/
|
|
|
|
#define FSM_VERBOSE 0x8000
|
|
|
|
#define FSM_INTERNAL 0x4000
|
|
|
|
#define FSM_SYSCALL 0x2000
|
|
|
|
#define FSM_DEAD 0x1000
|
2002-01-12 07:03:22 +08:00
|
|
|
|
2001-02-11 00:47:40 +08:00
|
|
|
#define _fv(_a) ((_a) | FSM_VERBOSE)
|
|
|
|
#define _fi(_a) ((_a) | FSM_INTERNAL)
|
|
|
|
#define _fs(_a) ((_a) | (FSM_INTERNAL | FSM_SYSCALL))
|
|
|
|
#define _fd(_a) ((_a) | (FSM_INTERNAL | FSM_DEAD))
|
2002-01-12 07:03:22 +08:00
|
|
|
|
2001-02-11 00:47:40 +08:00
|
|
|
typedef enum fileStage_e {
|
|
|
|
FSM_UNKNOWN = 0,
|
|
|
|
FSM_INIT = _fd(1),
|
|
|
|
FSM_PRE = _fd(2),
|
|
|
|
FSM_PROCESS = _fv(3),
|
|
|
|
FSM_POST = _fd(4),
|
|
|
|
FSM_UNDO = 5,
|
|
|
|
FSM_FINI = 6,
|
|
|
|
|
|
|
|
FSM_PKGINSTALL = _fd(7),
|
|
|
|
FSM_PKGERASE = _fd(8),
|
|
|
|
FSM_PKGBUILD = _fd(9),
|
|
|
|
FSM_PKGCOMMIT = _fd(10),
|
|
|
|
FSM_PKGUNDO = _fd(11),
|
|
|
|
|
|
|
|
FSM_CREATE = _fd(17),
|
|
|
|
FSM_MAP = _fd(18),
|
|
|
|
FSM_MKDIRS = _fi(19),
|
|
|
|
FSM_RMDIRS = _fi(20),
|
|
|
|
FSM_MKLINKS = _fi(21),
|
|
|
|
FSM_NOTIFY = _fd(22),
|
|
|
|
FSM_DESTROY = _fd(23),
|
|
|
|
FSM_VERIFY = _fd(24),
|
|
|
|
FSM_COMMIT = _fd(25),
|
|
|
|
|
|
|
|
FSM_UNLINK = _fs(33),
|
|
|
|
FSM_RENAME = _fs(34),
|
|
|
|
FSM_MKDIR = _fs(35),
|
|
|
|
FSM_RMDIR = _fs(36),
|
2003-12-26 07:00:44 +08:00
|
|
|
FSM_LSETFCON= _fs(39),
|
|
|
|
FSM_CHOWN = _fs(40),
|
|
|
|
FSM_LCHOWN = _fs(41),
|
|
|
|
FSM_CHMOD = _fs(42),
|
|
|
|
FSM_UTIME = _fs(43),
|
|
|
|
FSM_SYMLINK = _fs(44),
|
|
|
|
FSM_LINK = _fs(45),
|
|
|
|
FSM_MKFIFO = _fs(46),
|
|
|
|
FSM_MKNOD = _fs(47),
|
|
|
|
FSM_LSTAT = _fs(48),
|
|
|
|
FSM_STAT = _fs(49),
|
|
|
|
FSM_READLINK= _fs(50),
|
|
|
|
FSM_CHROOT = _fs(51),
|
2001-02-11 00:47:40 +08:00
|
|
|
|
|
|
|
FSM_NEXT = _fd(65),
|
|
|
|
FSM_EAT = _fd(66),
|
|
|
|
FSM_POS = _fd(67),
|
|
|
|
FSM_PAD = _fd(68),
|
|
|
|
FSM_TRAILER = _fd(69),
|
|
|
|
FSM_HREAD = _fd(70),
|
|
|
|
FSM_HWRITE = _fd(71),
|
|
|
|
FSM_DREAD = _fs(72),
|
|
|
|
FSM_DWRITE = _fs(73),
|
|
|
|
|
|
|
|
FSM_ROPEN = _fs(129),
|
|
|
|
FSM_READ = _fs(130),
|
|
|
|
FSM_RCLOSE = _fs(131),
|
|
|
|
FSM_WOPEN = _fs(132),
|
|
|
|
FSM_WRITE = _fs(133),
|
2001-12-21 00:28:46 +08:00
|
|
|
FSM_WCLOSE = _fs(134)
|
2001-02-11 00:47:40 +08:00
|
|
|
} fileStage;
|
|
|
|
#undef _fv
|
|
|
|
#undef _fi
|
|
|
|
#undef _fs
|
|
|
|
#undef _fd
|
|
|
|
|
|
|
|
/** \ingroup payload
|
|
|
|
* Keeps track of the set of all hard links to a file in an archive.
|
|
|
|
*/
|
2002-01-12 07:03:22 +08:00
|
|
|
struct hardLink_s {
|
2003-04-03 05:16:26 +08:00
|
|
|
struct hardLink_s * next;
|
|
|
|
const char ** nsuffix;
|
|
|
|
int * filex;
|
2001-06-26 04:01:42 +08:00
|
|
|
struct stat sb;
|
2001-02-11 00:47:40 +08:00
|
|
|
int nlink;
|
|
|
|
int linksLeft;
|
|
|
|
int linkIndex;
|
|
|
|
int createdPath;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** \ingroup payload
|
|
|
|
* Iterator across package file info, forward on install, backward on erase.
|
|
|
|
*/
|
|
|
|
struct fsmIterator_s {
|
2002-05-20 02:42:25 +08:00
|
|
|
rpmts ts; /*!< transaction set. */
|
|
|
|
rpmfi fi; /*!< transaction element file info. */
|
2001-10-28 06:31:10 +08:00
|
|
|
int reverse; /*!< reversed traversal? */
|
|
|
|
int isave; /*!< last returned iterator index. */
|
|
|
|
int i; /*!< iterator index. */
|
2001-02-11 00:47:40 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/** \ingroup payload
|
|
|
|
* File name and stat information.
|
|
|
|
*/
|
|
|
|
struct fsm_s {
|
2001-11-19 01:49:21 +08:00
|
|
|
const char * path; /*!< Current file name. */
|
|
|
|
const char * opath; /*!< Original file name. */
|
|
|
|
FD_t cfd; /*!< Payload file handle. */
|
|
|
|
FD_t rfd; /*!< read: File handle. */
|
|
|
|
char * rdbuf; /*!< read: Buffer. */
|
|
|
|
char * rdb; /*!< read: Buffer allocated. */
|
|
|
|
size_t rdsize; /*!< read: Buffer allocated size. */
|
|
|
|
size_t rdlen; /*!< read: Number of bytes requested.*/
|
|
|
|
size_t rdnb; /*!< read: Number of bytes returned. */
|
|
|
|
FD_t wfd; /*!< write: File handle. */
|
|
|
|
char * wrbuf; /*!< write: Buffer. */
|
|
|
|
char * wrb; /*!< write: Buffer allocated. */
|
|
|
|
size_t wrsize; /*!< write: Buffer allocated size. */
|
|
|
|
size_t wrlen; /*!< write: Number of bytes requested.*/
|
|
|
|
size_t wrnb; /*!< write: Number of bytes returned. */
|
|
|
|
FSMI_t iter; /*!< File iterator. */
|
|
|
|
int ix; /*!< Current file iterator index. */
|
2002-01-12 07:03:22 +08:00
|
|
|
struct hardLink_s * links; /*!< Pending hard linked file(s). */
|
|
|
|
struct hardLink_s * li; /*!< Current hard linked file(s). */
|
2001-11-19 01:49:21 +08:00
|
|
|
unsigned int * archiveSize; /*!< Pointer to archive size. */
|
|
|
|
const char ** failedFile; /*!< First file name that failed. */
|
|
|
|
const char * subdir; /*!< Current file sub-directory. */
|
|
|
|
char subbuf[64]; /* XXX eliminate */
|
|
|
|
const char * osuffix; /*!< Old, preserved, file suffix. */
|
|
|
|
const char * nsuffix; /*!< New, created, file suffix. */
|
|
|
|
const char * suffix; /*!< Current file suffix. */
|
2001-02-11 00:47:40 +08:00
|
|
|
char sufbuf[64]; /* XXX eliminate */
|
2001-11-19 01:49:21 +08:00
|
|
|
short * dnlx; /*!< Last dirpath verified indexes. */
|
|
|
|
char * ldn; /*!< Last dirpath verified. */
|
|
|
|
int ldnlen; /*!< Last dirpath current length. */
|
|
|
|
int ldnalloc; /*!< Last dirpath allocated length. */
|
|
|
|
int postpone; /*!< Skip remaining stages? */
|
|
|
|
int diskchecked; /*!< Has stat(2) been performed? */
|
|
|
|
int exists; /*!< Does current file exist on disk? */
|
|
|
|
int mkdirsdone; /*!< Have "orphan" dirs been created? */
|
|
|
|
int astriplen; /*!< Length of buildroot prefix. */
|
|
|
|
int rc; /*!< External file stage return code. */
|
|
|
|
int commit; /*!< Commit synchronously? */
|
|
|
|
cpioMapFlags mapFlags; /*!< Bit(s) to control mapping. */
|
|
|
|
const char * dirName; /*!< File directory name. */
|
|
|
|
const char * baseName; /*!< File base name. */
|
|
|
|
const char * fmd5sum; /*!< Hex MD5 sum (NULL disables). */
|
|
|
|
const char * md5sum; /*!< Binary MD5 sum (NULL disables). */
|
2003-12-26 07:00:44 +08:00
|
|
|
const char * fcontext; /*!< File security context (NULL disables). */
|
2001-11-19 01:49:21 +08:00
|
|
|
|
|
|
|
unsigned fflags; /*!< File flags. */
|
2007-09-20 21:19:25 +08:00
|
|
|
rpmFileAction action; /*!< File disposition. */
|
2001-11-19 01:49:21 +08:00
|
|
|
fileStage goal; /*!< Package state machine goal. */
|
|
|
|
fileStage stage; /*!< External file stage. */
|
2003-03-19 11:00:02 +08:00
|
|
|
fileStage nstage; /*!< Next file stage. */
|
2001-11-19 01:49:21 +08:00
|
|
|
struct stat sb; /*!< Current file stat(2) info. */
|
|
|
|
struct stat osb; /*!< Original file stat(2) info. */
|
2001-02-11 00:47:40 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return formatted string representation of file stages.
|
|
|
|
* @param a file stage
|
|
|
|
* @return formatted string
|
|
|
|
*/
|
2007-09-12 01:07:39 +08:00
|
|
|
const char * fileStageString(fileStage a) ;
|
2001-02-11 00:47:40 +08:00
|
|
|
|
2001-03-04 04:41:37 +08:00
|
|
|
/**
|
|
|
|
* Return formatted string representation of file disposition.
|
|
|
|
* @param a file dispostion
|
|
|
|
* @return formatted string
|
|
|
|
*/
|
2007-09-20 21:19:25 +08:00
|
|
|
const char * fileActionString(rpmFileAction a) ;
|
2001-03-04 04:41:37 +08:00
|
|
|
|
2001-02-11 00:47:40 +08:00
|
|
|
/**
|
|
|
|
* Create file state machine instance.
|
2003-04-03 05:16:26 +08:00
|
|
|
* @return file state machine
|
2001-02-11 00:47:40 +08:00
|
|
|
*/
|
2007-09-12 01:07:39 +08:00
|
|
|
FSM_t newFSM(void);
|
2001-02-11 00:47:40 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Destroy file state machine instance.
|
2003-04-03 05:16:26 +08:00
|
|
|
* @param fsm file state machine
|
2001-02-11 00:47:40 +08:00
|
|
|
* @return always NULL
|
|
|
|
*/
|
2007-09-12 01:07:39 +08:00
|
|
|
FSM_t freeFSM(FSM_t fsm);
|
2001-02-11 00:47:40 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Load external data into file state machine.
|
2003-04-03 05:16:26 +08:00
|
|
|
* @param fsm file state machine
|
2001-02-11 00:47:40 +08:00
|
|
|
* @param goal
|
|
|
|
* @param ts transaction set
|
|
|
|
* @param fi transaction element file info
|
2002-04-09 02:56:01 +08:00
|
|
|
* @param cfd
|
2002-06-10 06:15:16 +08:00
|
|
|
* @retval archiveSize pointer to archive size
|
|
|
|
* @retval failedFile pointer to first file name that failed.
|
2001-02-11 00:47:40 +08:00
|
|
|
* @return 0 on success
|
|
|
|
*/
|
|
|
|
int fsmSetup(FSM_t fsm, fileStage goal,
|
2002-05-20 02:42:25 +08:00
|
|
|
const rpmts ts,
|
|
|
|
const rpmfi fi,
|
2001-05-06 03:28:32 +08:00
|
|
|
FD_t cfd,
|
2007-09-12 01:07:39 +08:00
|
|
|
unsigned int * archiveSize,
|
|
|
|
const char ** failedFile);
|
2001-02-11 00:47:40 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Clean file state machine.
|
2003-04-03 05:16:26 +08:00
|
|
|
* @param fsm file state machine
|
2001-02-11 00:47:40 +08:00
|
|
|
* @return 0 on success
|
|
|
|
*/
|
2007-09-12 01:07:39 +08:00
|
|
|
int fsmTeardown(FSM_t fsm);
|
2001-02-11 00:47:40 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve transaction set from file state machine iterator.
|
2003-04-03 05:16:26 +08:00
|
|
|
* @param fsm file state machine
|
2001-02-11 00:47:40 +08:00
|
|
|
* @return transaction set
|
|
|
|
*/
|
2007-09-12 01:07:39 +08:00
|
|
|
rpmts fsmGetTs(const FSM_t fsm);
|
2001-02-11 00:47:40 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve transaction element file info from file state machine iterator.
|
2003-04-03 05:16:26 +08:00
|
|
|
* @param fsm file state machine
|
2001-02-11 00:47:40 +08:00
|
|
|
* @return transaction element file info
|
|
|
|
*/
|
2007-09-12 01:07:39 +08:00
|
|
|
rpmfi fsmGetFi(const FSM_t fsm);
|
2001-02-11 00:47:40 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Map next file path and action.
|
2003-04-03 05:16:26 +08:00
|
|
|
* @param fsm file state machine
|
2001-02-11 00:47:40 +08:00
|
|
|
*/
|
2007-09-12 01:07:39 +08:00
|
|
|
int fsmMapPath(FSM_t fsm);
|
2001-02-11 00:47:40 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Map file stat(2) info.
|
2003-04-03 05:16:26 +08:00
|
|
|
* @param fsm file state machine
|
2001-02-11 00:47:40 +08:00
|
|
|
*/
|
2007-09-12 01:07:39 +08:00
|
|
|
int fsmMapAttrs(FSM_t fsm);
|
2001-02-11 00:47:40 +08:00
|
|
|
|
2003-04-03 05:16:26 +08:00
|
|
|
/**
|
|
|
|
* File state machine driver.
|
|
|
|
* @param fsm file state machine
|
|
|
|
* @param nstage next stage
|
|
|
|
* @return 0 on success
|
|
|
|
*/
|
2007-09-12 01:07:39 +08:00
|
|
|
int fsmNext(FSM_t fsm, fileStage nstage);
|
2003-03-19 11:00:02 +08:00
|
|
|
|
2001-02-11 00:47:40 +08:00
|
|
|
/**
|
|
|
|
* File state machine driver.
|
2003-04-03 05:16:26 +08:00
|
|
|
* @param fsm file state machine
|
2001-02-11 00:47:40 +08:00
|
|
|
* @param stage next stage
|
|
|
|
* @return 0 on success
|
|
|
|
*/
|
2007-09-12 01:07:39 +08:00
|
|
|
int fsmStage(FSM_t fsm, fileStage stage);
|
2003-03-19 11:00:02 +08:00
|
|
|
|
2001-02-11 00:47:40 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* H_FSM */
|