2003-01-24 05:45:16 +08:00
|
|
|
/*
|
|
|
|
* blkid.c - User command-line interface for libblkid
|
|
|
|
*
|
|
|
|
* Copyright (C) 2001 Andreas Dilger
|
|
|
|
*
|
|
|
|
* %Begin-Header%
|
|
|
|
* This file may be redistributed under the terms of the
|
|
|
|
* GNU Lesser General Public License.
|
|
|
|
* %End-Header%
|
|
|
|
*/
|
|
|
|
|
2011-09-19 05:34:37 +08:00
|
|
|
#include "config.h"
|
2003-01-24 05:45:16 +08:00
|
|
|
#include <stdio.h>
|
2003-01-26 14:54:39 +08:00
|
|
|
#include <stdlib.h>
|
2008-07-13 10:06:30 +08:00
|
|
|
#include <unistd.h>
|
2003-07-06 12:36:48 +08:00
|
|
|
#include <string.h>
|
2008-07-13 10:06:30 +08:00
|
|
|
#ifdef HAVE_TERMIOS_H
|
|
|
|
#include <termios.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_TERMIO_H
|
|
|
|
#include <termio.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_IOCTL_H
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#endif
|
2003-01-24 05:45:16 +08:00
|
|
|
#ifdef HAVE_GETOPT_H
|
|
|
|
#include <getopt.h>
|
|
|
|
#else
|
2006-05-30 22:27:45 +08:00
|
|
|
extern int getopt(int argc, char * const argv[], const char *optstring);
|
2003-01-24 05:45:16 +08:00
|
|
|
extern char *optarg;
|
|
|
|
extern int optind;
|
|
|
|
#endif
|
|
|
|
|
2004-03-21 05:30:10 +08:00
|
|
|
#define OUTPUT_VALUE_ONLY 0x0001
|
|
|
|
#define OUTPUT_DEVICE_ONLY 0x0002
|
2008-07-13 10:06:30 +08:00
|
|
|
#define OUTPUT_PRETTY_LIST 0x0004
|
2004-03-21 05:30:10 +08:00
|
|
|
|
2008-07-13 10:06:30 +08:00
|
|
|
#include "ext2fs/ext2fs.h"
|
2003-01-24 05:45:16 +08:00
|
|
|
#include "blkid/blkid.h"
|
|
|
|
|
2014-01-11 10:40:28 +08:00
|
|
|
static const char *progname = "blkid";
|
2003-01-26 14:54:39 +08:00
|
|
|
|
|
|
|
static void print_version(FILE *out)
|
2003-01-24 05:45:16 +08:00
|
|
|
{
|
2003-12-07 14:28:50 +08:00
|
|
|
fprintf(out, "%s %s (%s)\n", progname, BLKID_VERSION, BLKID_DATE);
|
2003-01-24 05:45:16 +08:00
|
|
|
}
|
|
|
|
|
2003-01-26 14:54:39 +08:00
|
|
|
static void usage(int error)
|
2003-01-24 05:45:16 +08:00
|
|
|
{
|
|
|
|
FILE *out = error ? stderr : stdout;
|
|
|
|
|
|
|
|
print_version(out);
|
|
|
|
fprintf(out,
|
2008-07-13 10:06:30 +08:00
|
|
|
"usage:\t%s [-c <file>] [-ghlLv] [-o format] "
|
|
|
|
"[-s <tag>] [-t <token>]\n [-w <file>] [dev ...]\n"
|
2003-01-24 05:45:16 +08:00
|
|
|
"\t-c\tcache file (default: /etc/blkid.tab, /dev/null = none)\n"
|
|
|
|
"\t-h\tprint this usage message and exit\n"
|
2007-05-18 12:16:02 +08:00
|
|
|
"\t-g\tgarbage collect the blkid cache\n"
|
2003-01-24 05:45:16 +08:00
|
|
|
"\t-s\tshow specified tag(s) (default show all tags)\n"
|
|
|
|
"\t-t\tfind device with a specific token (NAME=value pair)\n"
|
2005-05-08 05:06:27 +08:00
|
|
|
"\t-l\tlookup the the first device with arguments specified by -t\n"
|
2003-01-24 05:45:16 +08:00
|
|
|
"\t-v\tprint version and exit\n"
|
|
|
|
"\t-w\twrite cache to different file (/dev/null = no write)\n"
|
|
|
|
"\tdev\tspecify device(s) to probe (default: all devices)\n",
|
|
|
|
progname);
|
|
|
|
exit(error);
|
|
|
|
}
|
|
|
|
|
2007-12-17 01:26:57 +08:00
|
|
|
/*
|
|
|
|
* This function does "safe" printing. It will convert non-printable
|
|
|
|
* ASCII characters using '^' and M- notation.
|
|
|
|
*/
|
|
|
|
static void safe_print(const char *cp, int len)
|
|
|
|
{
|
|
|
|
unsigned char ch;
|
|
|
|
|
|
|
|
if (len < 0)
|
|
|
|
len = strlen(cp);
|
|
|
|
|
|
|
|
while (len--) {
|
|
|
|
ch = *cp++;
|
|
|
|
if (ch > 128) {
|
|
|
|
fputs("M-", stdout);
|
|
|
|
ch -= 128;
|
|
|
|
}
|
|
|
|
if ((ch < 32) || (ch == 0x7f)) {
|
|
|
|
fputc('^', stdout);
|
|
|
|
ch ^= 0x40; /* ^@, ^A, ^B; ^? for DEL */
|
|
|
|
}
|
2018-06-02 00:49:40 +08:00
|
|
|
if (ch != '"') {
|
|
|
|
fputc(ch, stdout);
|
|
|
|
}
|
2007-12-17 01:26:57 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-13 10:06:30 +08:00
|
|
|
static int get_terminal_width(void)
|
|
|
|
{
|
|
|
|
#ifdef TIOCGSIZE
|
2008-07-15 05:49:38 +08:00
|
|
|
struct ttysize t_win;
|
2008-07-13 10:06:30 +08:00
|
|
|
#endif
|
|
|
|
#ifdef TIOCGWINSZ
|
2008-07-15 05:49:38 +08:00
|
|
|
struct winsize w_win;
|
2008-07-13 10:06:30 +08:00
|
|
|
#endif
|
|
|
|
const char *cp;
|
2014-01-31 05:19:01 +08:00
|
|
|
int width = 80;
|
2008-07-13 10:06:30 +08:00
|
|
|
|
|
|
|
#ifdef TIOCGSIZE
|
2014-01-31 05:19:01 +08:00
|
|
|
if (ioctl (0, TIOCGSIZE, &t_win) == 0) {
|
|
|
|
width = t_win.ts_cols;
|
|
|
|
goto got_it;
|
|
|
|
}
|
2008-07-13 10:06:30 +08:00
|
|
|
#endif
|
|
|
|
#ifdef TIOCGWINSZ
|
2014-01-31 05:19:01 +08:00
|
|
|
if (ioctl (0, TIOCGWINSZ, &w_win) == 0) {
|
|
|
|
width = w_win.ws_col;
|
|
|
|
goto got_it;
|
|
|
|
}
|
2008-07-13 10:06:30 +08:00
|
|
|
#endif
|
|
|
|
cp = getenv("COLUMNS");
|
|
|
|
if (cp)
|
2014-01-31 05:19:01 +08:00
|
|
|
width = atoi(cp);
|
|
|
|
got_it:
|
|
|
|
if (width > 4096)
|
|
|
|
return 4096; /* sanity check */
|
|
|
|
return width;
|
2008-07-13 10:06:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int pretty_print_word(const char *str, int max_len,
|
|
|
|
int left_len, int overflow_nl)
|
|
|
|
{
|
|
|
|
int len = strlen(str) + left_len;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
fputs(str, stdout);
|
|
|
|
if (overflow_nl && len > max_len) {
|
|
|
|
fputc('\n', stdout);
|
|
|
|
len = 0;
|
|
|
|
} else if (len > max_len)
|
|
|
|
ret = len - max_len;
|
2014-01-11 10:40:28 +08:00
|
|
|
do {
|
2008-07-13 10:06:30 +08:00
|
|
|
fputc(' ', stdout);
|
2014-01-11 10:40:28 +08:00
|
|
|
} while (len++ < max_len);
|
2008-07-13 10:06:30 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void pretty_print_line(const char *device, const char *fs_type,
|
|
|
|
const char *label, const char *mtpt,
|
|
|
|
const char *uuid)
|
|
|
|
{
|
|
|
|
static int device_len = 10, fs_type_len = 7;
|
|
|
|
static int label_len = 8, mtpt_len = 14;
|
|
|
|
static int term_width = -1;
|
|
|
|
int len, w;
|
|
|
|
|
2014-01-11 12:25:54 +08:00
|
|
|
if (term_width < 0) {
|
2008-07-13 10:06:30 +08:00
|
|
|
term_width = get_terminal_width();
|
|
|
|
|
2014-01-11 12:25:54 +08:00
|
|
|
if (term_width > 80) {
|
|
|
|
term_width -= 80;
|
|
|
|
w = term_width / 10;
|
|
|
|
if (w > 8)
|
|
|
|
w = 8;
|
|
|
|
term_width -= 2*w;
|
|
|
|
label_len += w;
|
|
|
|
fs_type_len += w;
|
|
|
|
w = term_width/2;
|
|
|
|
device_len += w;
|
|
|
|
mtpt_len +=w;
|
|
|
|
}
|
2008-07-13 10:06:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
len = pretty_print_word(device, device_len, 0, 1);
|
|
|
|
len = pretty_print_word(fs_type, fs_type_len, len, 0);
|
|
|
|
len = pretty_print_word(label, label_len, len, 0);
|
|
|
|
len = pretty_print_word(mtpt, mtpt_len, len, 0);
|
|
|
|
fputs(uuid, stdout);
|
|
|
|
fputc('\n', stdout);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void pretty_print_dev(blkid_dev dev)
|
|
|
|
{
|
|
|
|
blkid_tag_iterate iter;
|
|
|
|
const char *type, *value, *devname;
|
|
|
|
const char *uuid = "", *fs_type = "", *label = "";
|
|
|
|
int len, mount_flags;
|
|
|
|
char mtpt[80];
|
|
|
|
errcode_t retval;
|
|
|
|
|
|
|
|
if (dev == NULL) {
|
|
|
|
pretty_print_line("device", "fs_type", "label",
|
|
|
|
"mount point", "UUID");
|
|
|
|
for (len=get_terminal_width()-1; len > 0; len--)
|
|
|
|
fputc('-', stdout);
|
|
|
|
fputc('\n', stdout);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
devname = blkid_dev_devname(dev);
|
|
|
|
if (access(devname, F_OK))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Get the uuid, label, type */
|
|
|
|
iter = blkid_tag_iterate_begin(dev);
|
|
|
|
while (blkid_tag_next(iter, &type, &value) == 0) {
|
|
|
|
if (!strcmp(type, "UUID"))
|
|
|
|
uuid = value;
|
|
|
|
if (!strcmp(type, "TYPE"))
|
|
|
|
fs_type = value;
|
|
|
|
if (!strcmp(type, "LABEL"))
|
|
|
|
label = value;
|
|
|
|
}
|
|
|
|
blkid_tag_iterate_end(iter);
|
|
|
|
|
|
|
|
/* Get the mount point */
|
|
|
|
mtpt[0] = 0;
|
|
|
|
retval = ext2fs_check_mount_point(devname, &mount_flags,
|
|
|
|
mtpt, sizeof(mtpt));
|
|
|
|
if (retval == 0) {
|
|
|
|
if (mount_flags & EXT2_MF_MOUNTED) {
|
|
|
|
if (!mtpt[0])
|
|
|
|
strcpy(mtpt, "(mounted, mtpt unknown)");
|
|
|
|
} else if (mount_flags & EXT2_MF_BUSY)
|
|
|
|
strcpy(mtpt, "(in use)");
|
|
|
|
else
|
|
|
|
strcpy(mtpt, "(not mounted)");
|
|
|
|
}
|
|
|
|
|
|
|
|
pretty_print_line(devname, fs_type, label, mtpt, uuid);
|
|
|
|
}
|
|
|
|
|
2004-03-21 05:30:10 +08:00
|
|
|
static void print_tags(blkid_dev dev, char *show[], int numtag, int output)
|
2003-01-24 05:45:16 +08:00
|
|
|
{
|
2003-01-26 14:54:39 +08:00
|
|
|
blkid_tag_iterate iter;
|
|
|
|
const char *type, *value;
|
2003-03-02 08:29:01 +08:00
|
|
|
int i, first = 1;
|
2003-01-24 05:45:16 +08:00
|
|
|
|
|
|
|
if (!dev)
|
|
|
|
return;
|
|
|
|
|
2008-07-13 10:06:30 +08:00
|
|
|
if (output & OUTPUT_PRETTY_LIST) {
|
|
|
|
pretty_print_dev(dev);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2004-03-21 05:30:10 +08:00
|
|
|
if (output & OUTPUT_DEVICE_ONLY) {
|
|
|
|
printf("%s\n", blkid_dev_devname(dev));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2003-01-26 14:54:39 +08:00
|
|
|
iter = blkid_tag_iterate_begin(dev);
|
|
|
|
while (blkid_tag_next(iter, &type, &value) == 0) {
|
|
|
|
if (numtag && show) {
|
|
|
|
for (i=0; i < numtag; i++)
|
|
|
|
if (!strcmp(type, show[i]))
|
|
|
|
break;
|
|
|
|
if (i >= numtag)
|
|
|
|
continue;
|
|
|
|
}
|
2007-12-17 01:26:57 +08:00
|
|
|
if (output & OUTPUT_VALUE_ONLY) {
|
|
|
|
fputs(value, stdout);
|
|
|
|
fputc('\n', stdout);
|
|
|
|
} else {
|
|
|
|
if (first) {
|
|
|
|
printf("%s: ", blkid_dev_devname(dev));
|
|
|
|
first = 0;
|
|
|
|
}
|
|
|
|
fputs(type, stdout);
|
|
|
|
fputs("=\"", stdout);
|
|
|
|
safe_print(value, -1);
|
|
|
|
fputs("\" ", stdout);
|
2003-01-24 05:45:16 +08:00
|
|
|
}
|
|
|
|
}
|
2003-01-26 14:54:39 +08:00
|
|
|
blkid_tag_iterate_end(iter);
|
2003-01-24 05:45:16 +08:00
|
|
|
|
2004-03-21 05:30:10 +08:00
|
|
|
if (!first && !(output & OUTPUT_VALUE_ONLY))
|
2003-01-24 05:45:16 +08:00
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2003-01-26 14:54:39 +08:00
|
|
|
blkid_cache cache = NULL;
|
2003-01-24 05:45:16 +08:00
|
|
|
char *devices[128] = { NULL, };
|
|
|
|
char *show[128] = { NULL, };
|
2003-01-26 14:54:39 +08:00
|
|
|
char *search_type = NULL, *search_value = NULL;
|
2003-01-24 05:45:16 +08:00
|
|
|
char *read = NULL;
|
|
|
|
char *write = NULL;
|
2003-12-07 14:28:50 +08:00
|
|
|
unsigned int numdev = 0, numtag = 0;
|
2003-01-24 05:45:16 +08:00
|
|
|
int version = 0;
|
|
|
|
int err = 4;
|
2003-12-07 14:28:50 +08:00
|
|
|
unsigned int i;
|
2004-03-21 05:30:10 +08:00
|
|
|
int output_format = 0;
|
2007-05-18 12:16:02 +08:00
|
|
|
int lookup = 0, gc = 0;
|
2005-05-06 12:10:52 +08:00
|
|
|
int c;
|
2003-01-24 05:45:16 +08:00
|
|
|
|
2008-07-13 10:06:30 +08:00
|
|
|
while ((c = getopt (argc, argv, "c:f:ghlLo:s:t:w:v")) != EOF)
|
2003-01-24 05:45:16 +08:00
|
|
|
switch (c) {
|
|
|
|
case 'c':
|
2014-01-31 07:02:37 +08:00
|
|
|
read = optarg;
|
2003-01-24 05:45:16 +08:00
|
|
|
if (!write)
|
|
|
|
write = read;
|
|
|
|
break;
|
2005-05-08 05:06:27 +08:00
|
|
|
case 'l':
|
|
|
|
lookup++;
|
|
|
|
break;
|
2008-07-13 10:06:30 +08:00
|
|
|
case 'L':
|
|
|
|
output_format = OUTPUT_PRETTY_LIST;
|
|
|
|
break;
|
2007-05-18 12:16:02 +08:00
|
|
|
case 'g':
|
|
|
|
gc = 1;
|
|
|
|
break;
|
2004-03-21 05:30:10 +08:00
|
|
|
case 'o':
|
|
|
|
if (!strcmp(optarg, "value"))
|
|
|
|
output_format = OUTPUT_VALUE_ONLY;
|
|
|
|
else if (!strcmp(optarg, "device"))
|
|
|
|
output_format = OUTPUT_DEVICE_ONLY;
|
2008-07-13 10:06:30 +08:00
|
|
|
else if (!strcmp(optarg, "list"))
|
|
|
|
output_format = OUTPUT_PRETTY_LIST;
|
2004-03-21 05:30:10 +08:00
|
|
|
else if (!strcmp(optarg, "full"))
|
|
|
|
output_format = 0;
|
|
|
|
else {
|
2008-07-13 10:06:30 +08:00
|
|
|
fprintf(stderr, "Invalid output format %s. "
|
|
|
|
"Choose from value,\n\t"
|
|
|
|
"device, list, or full\n", optarg);
|
2004-03-21 05:30:10 +08:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
break;
|
2003-01-24 05:45:16 +08:00
|
|
|
case 's':
|
|
|
|
if (numtag >= sizeof(show) / sizeof(*show)) {
|
|
|
|
fprintf(stderr, "Too many tags specified\n");
|
|
|
|
usage(err);
|
|
|
|
}
|
|
|
|
show[numtag++] = optarg;
|
|
|
|
break;
|
|
|
|
case 't':
|
2003-01-26 14:54:39 +08:00
|
|
|
if (search_type) {
|
2003-01-24 05:45:16 +08:00
|
|
|
fprintf(stderr, "Can only search for "
|
|
|
|
"one NAME=value pair\n");
|
|
|
|
usage(err);
|
|
|
|
}
|
2003-01-26 14:54:39 +08:00
|
|
|
if (blkid_parse_tag_string(optarg,
|
|
|
|
&search_type,
|
|
|
|
&search_value)) {
|
2003-01-24 05:45:16 +08:00
|
|
|
fprintf(stderr, "-t needs NAME=value pair\n");
|
|
|
|
usage(err);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'v':
|
|
|
|
version = 1;
|
|
|
|
break;
|
|
|
|
case 'w':
|
2014-01-31 07:02:37 +08:00
|
|
|
write = optarg;
|
2003-01-24 05:45:16 +08:00
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
err = 0;
|
2014-01-10 04:03:40 +08:00
|
|
|
/* fallthrough */
|
2003-01-24 05:45:16 +08:00
|
|
|
default:
|
|
|
|
usage(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
while (optind < argc)
|
|
|
|
devices[numdev++] = argv[optind++];
|
|
|
|
|
|
|
|
if (version) {
|
|
|
|
print_version(stdout);
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2003-02-13 12:51:21 +08:00
|
|
|
if (blkid_get_cache(&cache, read) < 0)
|
2003-01-24 05:45:16 +08:00
|
|
|
goto exit;
|
|
|
|
|
|
|
|
err = 2;
|
2007-05-18 12:16:02 +08:00
|
|
|
if (gc) {
|
|
|
|
blkid_gc_cache(cache);
|
2008-07-13 10:06:30 +08:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
if (output_format & OUTPUT_PRETTY_LIST)
|
|
|
|
pretty_print_dev(NULL);
|
|
|
|
|
|
|
|
if (lookup) {
|
2005-05-08 05:06:27 +08:00
|
|
|
blkid_dev dev;
|
|
|
|
|
|
|
|
if (!search_type) {
|
|
|
|
fprintf(stderr, "The lookup option requires a "
|
|
|
|
"search type specified using -t\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
/* Load any additional devices not in the cache */
|
|
|
|
for (i = 0; i < numdev; i++)
|
|
|
|
blkid_get_dev(cache, devices[i], BLKID_DEV_NORMAL);
|
|
|
|
|
|
|
|
if ((dev = blkid_find_dev_with_tag(cache, search_type,
|
|
|
|
search_value))) {
|
|
|
|
print_tags(dev, show, numtag, output_format);
|
|
|
|
err = 0;
|
|
|
|
}
|
2003-01-24 05:45:16 +08:00
|
|
|
/* If we didn't specify a single device, show all available devices */
|
2005-05-08 05:06:27 +08:00
|
|
|
} else if (!numdev) {
|
2003-01-26 14:54:39 +08:00
|
|
|
blkid_dev_iterate iter;
|
|
|
|
blkid_dev dev;
|
2003-01-24 05:45:16 +08:00
|
|
|
|
2003-02-13 12:51:21 +08:00
|
|
|
blkid_probe_all(cache);
|
2003-01-24 05:45:16 +08:00
|
|
|
|
2003-01-26 14:54:39 +08:00
|
|
|
iter = blkid_dev_iterate_begin(cache);
|
2005-05-08 01:32:47 +08:00
|
|
|
blkid_dev_set_search(iter, search_type, search_value);
|
2003-01-26 14:54:39 +08:00
|
|
|
while (blkid_dev_next(iter, &dev) == 0) {
|
2005-01-28 08:51:47 +08:00
|
|
|
dev = blkid_verify(cache, dev);
|
|
|
|
if (!dev)
|
|
|
|
continue;
|
2004-03-21 05:30:10 +08:00
|
|
|
print_tags(dev, show, numtag, output_format);
|
2003-01-24 05:45:16 +08:00
|
|
|
err = 0;
|
|
|
|
}
|
2003-01-26 14:54:39 +08:00
|
|
|
blkid_dev_iterate_end(iter);
|
2003-01-24 05:45:16 +08:00
|
|
|
/* Add all specified devices to cache (optionally display tags) */
|
|
|
|
} else for (i = 0; i < numdev; i++) {
|
2003-02-16 13:47:07 +08:00
|
|
|
blkid_dev dev = blkid_get_dev(cache, devices[i],
|
2003-02-13 12:51:21 +08:00
|
|
|
BLKID_DEV_NORMAL);
|
2003-01-24 05:45:16 +08:00
|
|
|
|
|
|
|
if (dev) {
|
2008-08-28 11:07:54 +08:00
|
|
|
if (search_type &&
|
|
|
|
!blkid_dev_has_tag(dev, search_type,
|
2005-05-08 01:32:47 +08:00
|
|
|
search_value))
|
2005-01-28 08:51:47 +08:00
|
|
|
continue;
|
2004-03-21 05:30:10 +08:00
|
|
|
print_tags(dev, show, numtag, output_format);
|
2003-01-24 05:45:16 +08:00
|
|
|
err = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
exit:
|
2009-02-24 01:07:50 +08:00
|
|
|
free(search_type);
|
|
|
|
free(search_value);
|
2003-02-13 12:51:21 +08:00
|
|
|
blkid_put_cache(cache);
|
2003-01-24 05:45:16 +08:00
|
|
|
return err;
|
|
|
|
}
|