1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
|
/*
Copyright (C) by Ronnie Sahlberg <ronniesahlberg@gmail.com> 2021
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#define _FILE_OFFSET_BITS 64
#define _GNU_SOURCE
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef AROS
#include "aros_compat.h"
#endif
#ifdef WIN32
#include <win32/win32_compat.h>
#pragma comment(lib, "ws2_32.lib")
WSADATA wsaData;
#else
#include <sys/stat.h>
#include <string.h>
#endif
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <inttypes.h>
#include <sys/types.h>
#include <fcntl.h>
#include "libnfs.h"
#include "libnfs-raw.h"
#include "libnfs-raw-mount.h"
struct file_context {
int fd;
struct nfs_context *nfs;
struct nfsfh *nfsfh;
struct nfs_url *url;
};
void usage(void)
{
fprintf(stderr, "Usage: nfs-stat <file>\n");
fprintf(stderr, "<file> stat an nfs file.\n");
exit(0);
}
void
free_file_context(struct file_context *file_context)
{
if (file_context->fd != -1) {
close(file_context->fd);
}
if (file_context->nfsfh != NULL) {
nfs_close(file_context->nfs, file_context->nfsfh);
}
if (file_context->nfs != NULL) {
nfs_destroy_context(file_context->nfs);
}
nfs_destroy_url(file_context->url);
free(file_context);
}
struct file_context *
open_file(const char *url, int flags)
{
struct file_context *file_context;
file_context = malloc(sizeof(struct file_context));
if (file_context == NULL) {
fprintf(stderr, "Failed to malloc file_context\n");
return NULL;
}
file_context->fd = -1;
file_context->nfs = NULL;
file_context->nfsfh = NULL;
file_context->url = NULL;
file_context->nfs = nfs_init_context();
if (file_context->nfs == NULL) {
fprintf(stderr, "failed to init context\n");
free_file_context(file_context);
return NULL;
}
file_context->url = nfs_parse_url_full(file_context->nfs, url);
if (file_context->url == NULL) {
fprintf(stderr, "%s\n", nfs_get_error(file_context->nfs));
free_file_context(file_context);
return NULL;
}
if (nfs_mount(file_context->nfs, file_context->url->server,
file_context->url->path) != 0) {
fprintf(stderr, "Failed to mount nfs share : %s\n",
nfs_get_error(file_context->nfs));
free_file_context(file_context);
return NULL;
}
if (flags == O_RDONLY) {
if (nfs_open(file_context->nfs, file_context->url->file, flags,
&file_context->nfsfh) != 0) {
fprintf(stderr, "Failed to open file %s: %s\n",
file_context->url->file,
nfs_get_error(file_context->nfs));
free_file_context(file_context);
return NULL;
}
} else {
if (nfs_creat(file_context->nfs, file_context->url->file, 0660,
&file_context->nfsfh) != 0) {
fprintf(stderr, "Failed to creat file %s: %s\n",
file_context->url->file,
nfs_get_error(file_context->nfs));
free_file_context(file_context);
return NULL;
}
}
return file_context;
}
char *get_file_type(int mode)
{
switch (mode & S_IFMT) {
#ifndef WIN32
case S_IFLNK: return "symbolic link";
#endif
case S_IFDIR: return "directory";
case S_IFCHR: return "character device";
case S_IFBLK: return "block device";
default: return "regular file";
}
}
char uidbuf[16];
char gidbuf[16];
#ifdef WIN32
char *uid_to_name(int uid)
{
sprintf(uidbuf, "%d", uid);
return uidbuf;
}
char *gid_to_name(int gid)
{
sprintf(gidbuf, "%d", gid);
return gidbuf;
}
#else
#include <sys/types.h>
#include <grp.h>
#include <pwd.h>
char *uid_to_name(int uid)
{
struct passwd *pw;
pw = getpwuid(uid);
if (pw) {
return pw->pw_name;
} else {
sprintf(uidbuf, "%d", uid);
return uidbuf;
}
}
char *gid_to_name(int gid)
{
struct group *gr;
gr = getgrgid(gid);
if (gr) {
return gr->gr_name;
} else {
sprintf(gidbuf, "%d", gid);
return gidbuf;
}
}
#endif
char access_bits[11];
char *get_access_bits(int mode)
{
switch (mode & S_IFMT) {
#ifndef WIN32
case S_IFLNK: access_bits[0] = 'l'; break;
#endif
case S_IFREG: access_bits[0] = '-'; break;
case S_IFDIR: access_bits[0] = 'd'; break;
case S_IFCHR: access_bits[0] = 'c'; break;
case S_IFBLK: access_bits[0] = 'b'; break;
default: access_bits[0] = '*';
}
access_bits[1] = "-r"[!!(mode & S_IRUSR)];
access_bits[2] = "-w"[!!(mode & S_IWUSR)];
access_bits[3] = "-xSs"[ !!(mode & S_IXUSR)
#ifndef WIN32
+ 2*!!(mode & S_ISUID)
#endif
];
access_bits[4] = "-r"[!!(mode & S_IRGRP)];
access_bits[5] = "-w"[!!(mode & S_IWGRP)];
access_bits[6] = "-xSs"[ !!(mode & S_IXGRP)
#ifndef WIN32
+ 2*!!(mode & S_ISGID)
#endif
];
access_bits[7] = "-r"[!!(mode & S_IROTH)];
access_bits[8] = "-w"[!!(mode & S_IWOTH)];
access_bits[9] = "-xTt"[ !!(mode & S_IXOTH)
#ifndef WIN32
+ 2*!!(mode & S_ISVTX)
#endif
];
return access_bits;
}
#define BUFSIZE 1024*1024
static char buf[BUFSIZE];
int main(int argc, char *argv[])
{
int ret;
struct file_context *nf;
struct nfs_stat_64 st;
uint64_t off;
int64_t count;
#ifdef WIN32
if (WSAStartup(MAKEWORD(2,2), &wsaData) != 0) {
printf("Failed to start Winsock2\n");
return 10;
}
#endif
#ifdef AROS
aros_init_socket();
#endif
if (argc < 2) {
usage();
}
nf = open_file(argv[1], O_RDONLY);
if (nf == NULL) {
fprintf(stderr, "Failed to open %s\n", argv[1]);
exit(10);
}
if (nfs_fstat64(nf->nfs, nf->nfsfh, &st) < 0) {
fprintf(stderr, "Failed to stat %s\n", argv[1]);
exit(10);
}
printf(" File:%s\n", argv[1]);
printf(" Size: %-16" PRIu64 "Blocks: %-11" PRIu64 " IO Block: %" PRIu64 " %s\n",
st.nfs_size, st.nfs_blocks, st.nfs_blksize,
get_file_type(st.nfs_mode));
printf("Inode:%-12" PRIu64 "Links %" PRIu64 "\n",
st.nfs_ino, st.nfs_nlink);
printf("Access: (%04" PRIo64 "/%s) Uid: ( %" PRIu64 "/%s) Gid: ( %" PRIu64 "/%s)\n",
st.nfs_mode & 07777, get_access_bits(st.nfs_mode),
st.nfs_uid, uid_to_name(st.nfs_uid),
st.nfs_gid, gid_to_name(st.nfs_gid));
printf("Access: %s", ctime( (const time_t *) &st.nfs_atime));
printf("Modify: %s", ctime( (const time_t *) &st.nfs_mtime));
printf("Change: %s", ctime( (const time_t *) &st.nfs_ctime));
free_file_context(nf);
return 0;
}
|