|
|
f3d5e0 |
/***********************************************************/
|
|
|
f3d5e0 |
/* ntux: native translation und extension */
|
|
|
14ffae |
/* Copyright (C) 2016--2021 SysDeer Technologies, LLC */
|
|
|
f3d5e0 |
/* Released under GPLv2 and GPLv3; see COPYING.NTUX. */
|
|
|
f3d5e0 |
/***********************************************************/
|
|
|
f3d5e0 |
|
|
|
f3d5e0 |
#include <psxabi/sys_sysapi.h>
|
|
|
f3d5e0 |
#include <psxabi/sys_stat.h>
|
|
|
f3d5e0 |
#include <psxabi/sys_errno.h>
|
|
|
f3d5e0 |
|
|
|
f3d5e0 |
#include <psxxfi/xfi_ofd.h>
|
|
|
471bb0 |
#include <psxxfi/xfi_stat.h>
|
|
|
f3d5e0 |
#include <psxxfi/xfi_unicode.h>
|
|
|
f3d5e0 |
|
|
|
f3d5e0 |
#include <ntux/ntux.h>
|
|
|
f3d5e0 |
#include "ntux_driver_impl.h"
|
|
|
f3d5e0 |
#include "ntux_nolibc_impl.h"
|
|
|
f3d5e0 |
#include "ntux_errinfo_impl.h"
|
|
|
f3d5e0 |
|
|
|
f3d5e0 |
static int ntux_cmd_stat_ret(int fd, struct __ofd * ofd, void * buf, void * sbuf, int ret)
|
|
|
f3d5e0 |
{
|
|
|
f3d5e0 |
if (fd >= 0)
|
|
|
f3d5e0 |
__sys_close(fd);
|
|
|
f3d5e0 |
|
|
|
f3d5e0 |
if (ofd)
|
|
|
f3d5e0 |
__xfi_ofd_ref_dec(ofd);
|
|
|
f3d5e0 |
|
|
|
f3d5e0 |
if (buf)
|
|
|
f3d5e0 |
ntux_free(buf);
|
|
|
f3d5e0 |
|
|
|
f3d5e0 |
if (sbuf)
|
|
|
f3d5e0 |
ntux_free(sbuf);
|
|
|
f3d5e0 |
|
|
|
f3d5e0 |
return ret;
|
|
|
f3d5e0 |
}
|
|
|
f3d5e0 |
|
|
|
f3d5e0 |
int ntux_cmd_stat(const struct ntux_driver_ctx * dctx, const char * dunit)
|
|
|
f3d5e0 |
{
|
|
|
f3d5e0 |
intptr_t ret;
|
|
|
f3d5e0 |
int32_t status;
|
|
|
4ce9ee |
int fdout;
|
|
|
4ce9ee |
int fdcwd;
|
|
|
f3d5e0 |
const unsigned char * unit;
|
|
|
f3d5e0 |
nt_stat * nstat;
|
|
|
f3d5e0 |
struct __stat st;
|
|
|
f3d5e0 |
char * str;
|
|
|
f3d5e0 |
int fd = -1;
|
|
|
f3d5e0 |
struct __ofd * ofd = 0;
|
|
|
f3d5e0 |
void * buf = 0;
|
|
|
f3d5e0 |
void * sbuf = 0;
|
|
|
f3d5e0 |
const size_t bufsize = 0x10000;
|
|
|
f3d5e0 |
|
|
|
f3d5e0 |
/* init */
|
|
|
f3d5e0 |
ntux_driver_set_ectx(
|
|
|
f3d5e0 |
dctx,0,dunit);
|
|
|
f3d5e0 |
|
|
|
f3d5e0 |
unit = (const unsigned char *)dunit;
|
|
|
f3d5e0 |
|
|
|
4ce9ee |
/* fdctx */
|
|
|
4ce9ee |
fdout = ntux_driver_fdout(dctx);
|
|
|
4ce9ee |
fdcwd = ntux_driver_fdcwd(dctx);
|
|
|
4ce9ee |
|
|
|
f3d5e0 |
/* open */
|
|
|
4ce9ee |
if ((ret = __sys_openat(fdcwd,unit,0,0)) < 0)
|
|
|
f3d5e0 |
if (ntux_errno_set(dctx,ret))
|
|
|
f3d5e0 |
return ntux_cmd_stat_ret(
|
|
|
f3d5e0 |
fd,ofd,buf,sbuf,
|
|
|
f3d5e0 |
NTUX_SYSTEM_ERROR(dctx));
|
|
|
f3d5e0 |
|
|
|
f3d5e0 |
fd = ret;
|
|
|
f3d5e0 |
|
|
|
f3d5e0 |
/* ofd */
|
|
|
f3d5e0 |
if (!(ofd = __xfi_ofd_ref_inc(fd)))
|
|
|
f3d5e0 |
return ntux_cmd_stat_ret(
|
|
|
f3d5e0 |
fd,ofd,buf,sbuf,
|
|
|
f3d5e0 |
NTUX_CUSTOM_ERROR(
|
|
|
f3d5e0 |
dctx,
|
|
|
f3d5e0 |
NTUX_ERR_FLOW_ERROR));
|
|
|
f3d5e0 |
|
|
|
f3d5e0 |
/* fstat */
|
|
|
f3d5e0 |
if ((ret = __sys_fstat(fd,&st)))
|
|
|
f3d5e0 |
if (ntux_errno_set(dctx,ret))
|
|
|
f3d5e0 |
return ntux_cmd_stat_ret(
|
|
|
f3d5e0 |
fd,ofd,buf,sbuf,
|
|
|
f3d5e0 |
NTUX_SYSTEM_ERROR(dctx));
|
|
|
f3d5e0 |
|
|
|
f3d5e0 |
/* buffers */
|
|
|
f3d5e0 |
if (!(buf = ntux_calloc(1,bufsize)))
|
|
|
f3d5e0 |
if (ntux_errno_set(dctx,ENOMEM))
|
|
|
f3d5e0 |
return ntux_cmd_stat_ret(
|
|
|
f3d5e0 |
fd,ofd,buf,sbuf,
|
|
|
f3d5e0 |
NTUX_SYSTEM_ERROR(dctx));
|
|
|
f3d5e0 |
|
|
|
f3d5e0 |
if (!(sbuf = ntux_calloc(1,bufsize)))
|
|
|
f3d5e0 |
if (ntux_errno_set(dctx,ENOMEM))
|
|
|
f3d5e0 |
return ntux_cmd_stat_ret(
|
|
|
f3d5e0 |
fd,ofd,buf,sbuf,
|
|
|
f3d5e0 |
NTUX_SYSTEM_ERROR(dctx));
|
|
|
f3d5e0 |
|
|
|
f3d5e0 |
nstat = (nt_stat *)sbuf;
|
|
|
f3d5e0 |
|
|
|
f3d5e0 |
/* stat */
|
|
|
471bb0 |
if ((status = __xfi_stat(
|
|
|
f3d5e0 |
ofd->info.hfile,
|
|
|
f3d5e0 |
nstat,bufsize,
|
|
|
f3d5e0 |
buf,bufsize,
|
|
|
f3d5e0 |
NT_STAT_DEV_NAME_COPY)))
|
|
|
f3d5e0 |
return ntux_cmd_stat_ret(
|
|
|
f3d5e0 |
fd,ofd,buf,sbuf,
|
|
|
f3d5e0 |
NTUX_NATIVE_ERROR(dctx,status));
|
|
|
f3d5e0 |
|
|
|
f3d5e0 |
/* native name */
|
|
|
f3d5e0 |
str = (char *)buf;
|
|
|
f3d5e0 |
|
|
|
f3d5e0 |
if ((status = __xfi_strconv_utf16_to_utf8(
|
|
|
f3d5e0 |
nstat->dev_name,
|
|
|
f3d5e0 |
str,bufsize,0)))
|
|
|
f3d5e0 |
return ntux_cmd_stat_ret(
|
|
|
f3d5e0 |
fd,ofd,buf,sbuf,
|
|
|
f3d5e0 |
NTUX_NATIVE_ERROR(dctx,status));
|
|
|
f3d5e0 |
|
|
|
4ce9ee |
ntux_dprintf(fdout,"fname: %s\n",str);
|
|
|
f3d5e0 |
|
|
|
f3d5e0 |
/* inode */
|
|
|
4ce9ee |
ntux_dprintf(fdout,"inode: 0x%p (%lld)\n",st.st_ino,st.st_ino);
|
|
|
f3d5e0 |
|
|
|
f3d5e0 |
/* all done */
|
|
|
f3d5e0 |
return ntux_cmd_stat_ret(fd,ofd,buf,sbuf,0);
|
|
|
f3d5e0 |
}
|