strace 和 ltrace

        strace 是 Linux 中一个调试和跟踪工具。它可以接管被跟踪进程执行的系统调用和收到的信号,然后把每一个执行的系统调用的名字,参数和返回值打印出来。可以通过 strace 找到问题出现在 user 层还是 kernel 层。strace 从内核接收信息,而且不需要以任何特殊的方式来构建内核。


NAME
       strace - trace system calls and signals        system trace


SYNOPSIS
       strace  [ -CdffhiqrtttTvxx ] [ -acolumn ] [ -eexpr ] ...  [ -ofile ] [ -ppid ] ...  [ -sstrsize ] [ -uusername ] [ -Evar=val ] ...
       [ -Evar ] ...  [ command [ arg ...  ] ]


       strace -c [ -eexpr ] ...  [ -Ooverhead ] [ -Ssortby ] [ command [ arg ...  ] ]


DESCRIPTION
       In the simplest case strace runs the specified command until it exits.  It intercepts and  records  the  system  calls  which  are
       called  by  a process and the signals which are received by a process.  The name of each system call, its arguments and its return
       value are printed on standard error or to the file specified with the -o option.


       strace is a useful diagnostic, instructional, and debugging tool.  System administrators, diagnosticians and trouble-shooters will
       find  it  invaluable for solving problems with programs for which the source is not readily available since they do not need to be
       recompiled in order to trace them.  Students, hackers and the overly-curious will find that a great deal can be  learned  about  a
       system  and its system calls by tracing even ordinary programs.  And programmers will find that since system calls and signals are
       events that happen at the user/kernel interface, a close examination of this boundary is very useful  for  bug  isolation,  sanity
       checking and attempting to capture race conditions.


       Each  line  in the trace contains the system call name, followed by its arguments in parentheses and its return value.  An example
       from stracing the command ``cat /dev/null'' is:


       open("/dev/null", O_RDONLY) = 3


       Errors (typically a return value of -1) have the errno symbol and error string appended.


       open("/foo/bar", O_RDONLY) = -1 ENOENT (No such file or directory)


       Signals are printed as a signal symbol and a signal string.  An excerpt from stracing and interrupting the command  ``sleep  666''
       is:

       sigsuspend([] <unfinished ...>
       --- SIGINT (Interrupt) ---
       +++ killed by SIGINT +++


       If  a system call is being executed and meanwhile another one is being called from a different thread/process then strace will try
       to preserve the order of those events and mark the ongoing call as being unfinished.  When the call returns it will be  marked  as
       resumed.



       [pid 28772] select(4, [3], NULL, NULL, NULL <unfinished ...>
       [pid 28779] clock_gettime(CLOCK_REALTIME, {1130322148, 939977000}) = 0
       [pid 28772] <... select resumed> )      = 1 (in [3])


       Interruption of a (restartable) system call by a signal delivery is processed differently as kernel terminates the system call and
       also arranges its immediate reexecution after the signal handler completes.


       read(0, 0x7ffff72cf5cf, 1)              = ? ERESTARTSYS (To be restarted)
       --- SIGALRM (Alarm clock) @ 0 (0) ---
       rt_sigreturn(0xe)                       = 0
       read(0, ""..., 1)                       = 0


       Arguments are printed in symbolic form with a passion.  This example shows the shell performing ``>>xyzzy'' output redirection:


       open("xyzzy", O_WRONLY|O_APPEND|O_CREAT, 0666) = 3


       Here the three argument form of open is decoded by breaking down the flag argument into  its  three  bitwise-OR  constituents  and
       printing the mode value in octal by tradition.  Where traditional or native usage differs from ANSI or POSIX, the latter forms are
       preferred.  In some cases, strace output has proven to be more readable than the source.


       Structure pointers are dereferenced and the members are displayed as appropriate.  In all cases arguments  are  formatted  in  the
       most C-like fashion possible.  For example, the essence of the command ``ls -l /dev/null'' is captured as:


       lstat("/dev/null", {st_mode=S_IFCHR|0666, st_rdev=makedev(1, 3), ...}) = 0

       Notice  how  the `struct stat' argument is dereferenced and how each member is displayed symbolically.  In particular, observe how
       the st_mode member is carefully decoded into a bitwise-OR of symbolic and numeric values.  Also notice in this  example  that  the
       first argument to lstat is an input to the system call and the second argument is an output.  Since output arguments are not modi‐
       fied if the system call fails, arguments may not always be dereferenced.  For example, retrying the ``ls -l'' example with a  non-
       existent file produces the following line:


       lstat("/foo/bar", 0xb004) = -1 ENOENT (No such file or directory)


       In this case the porch light is on but nobody is home.


       Character  pointers  are  dereferenced  and  printed as C strings.  Non-printing characters in strings are normally represented by
       ordinary C escape codes.  Only the first strsize (32 by default) bytes of strings are printed; longer  strings  have  an  ellipsis
       appended  following  the  closing quote.  Here is a line from ``ls -l'' where the getpwuid library routine is reading the password
       file:


       read(3, "root::0:0:System Administrator:/"..., 1024) = 422


       While structures are annotated using curly braces, simple pointers and arrays are printed using square brackets with commas  sepa‐
       rating elements.  Here is an example from the command ``id'' on a system with supplementary group ids:


       getgroups(32, [100, 0]) = 2


       On  the  other  hand,  bit-sets  are also shown using square brackets but set elements are separated only by a space.  Here is the
       shell preparing to execute an external command:


       sigprocmask(SIG_BLOCK, [CHLD TTOU], []) = 0


       Here the second argument is a bit-set of two signals, SIGCHLD and SIGTTOU.  In some cases the bit-set is so full that printing out
       the unset elements is more valuable.  In that case, the bit-set is prefixed by a tilde like this:


       sigprocmask(SIG_UNBLOCK, ~[], NULL) = 0

       Here the second argument represents the full set of all signals.


OPTIONS
       -c          Count  time,  calls,  and  errors  for  each  system call and report a summary on program exit.  On Linux, this
                   attempts to show system time (CPU time spent running in the kernel) independent of wall clock time.  If  -c  is
                   used with -f or -F (below), only aggregate totals for all traced processes are kept.

                   这个选项很重要,可以查看每个系统调用的执行时间

       -C          Like -c but also print regular output while processes are running.


       -d          Show some debugging output of strace itself on the standard error.


       -f          Trace child processes as they are created by currently traced processes as a result of the fork(2) system call.


                   On  non-Linux platforms the new process is attached to as soon as its pid is known (through the return value of
                   fork(2) in the parent process). This means that such children may run uncontrolled for a while  (especially  in
                   the  case  of  a  vfork(2)), until the parent is scheduled again to complete its (v)fork(2) call.  On Linux the
                   child is traced from its first instruction with no delay.  If the parent process decides to wait(2) for a child
                   that  is currently being traced, it is suspended until an appropriate child process either terminates or incurs
                   a signal that would cause it to terminate (as determined from the child's current signal disposition).


                   On SunOS 4.x the tracing of vforks is accomplished with some dynamic linking trickery.


       -ff         If the -o filename option is in effect, each processes trace is  written  to  filename.pid  where  pid  is  the
                   numeric process id of each process.  This is incompatible with -c, since no per-process counts are kept.


       -F          This option is now obsolete and it has the same functionality as -f.


       -h          Print the help summary.


       -i          Print the instruction pointer at the time of the system call.


       -q          Suppress  messages  about  attaching, detaching etc.  This happens automatically when output is redirected to a
                   file and the command is run directly instead of attaching.


       -r          Print a relative timestamp upon entry to each system call.  This records the time difference between the begin‐
                   ning of successive system calls.

       -t          Prefix each line of the trace with the time of day.


       -tt         If given twice, the time printed will include the microseconds.


       -ttt        If  given thrice, the time printed will include the microseconds and the leading portion will be printed as the
                   number of seconds since the epoch.


       -T          Show the time spent in system calls. This records the time difference between the beginning and the end of each
                   system call.


       -v          Print  unabbreviated  versions of environment, stat, termios, etc.  calls.  These structures are very common in
                   calls and so the default behavior displays a reasonable subset of structure members.  Use this  option  to  get
                   all of the gory details.


       -V          Print the version number of strace.


       -x          Print all non-ASCII strings in hexadecimal string format.


       -xx         Print all strings in hexadecimal string format.


       -a column   Align return values in a specific column (default column 40).


       -e expr     A  qualifying  expression which modifies which events to trace or how to trace them.  The format of the expres‐
                   sion is:
                   -e 选项同样重要,可以指定需要 trace 的函数、文件、信号、进程

                             [qualifier=][!]value1[,value2]...


                   where qualifier is one of trace, abbrev, verbose, raw, signal, read, or write and value is  a  qualifier-depen‐
                   dent  symbol  or number.  The default qualifier is trace.  Using an exclamation mark negates the set of values.
                   For example, -e open means literally -e trace=open which in turn means trace only the  open  system  call.   By
                   contrast, -e trace=!open means to trace every system call except open.  In addition, the special values all and
                   none have the obvious meanings.


                   Note that some shells use the exclamation point for history expansion even inside quoted arguments.  If so, you
                   must escape the exclamation point with a backslash.

       -e trace=set
                   Trace only the specified set of system calls.  The -c option is useful for determining which system calls might
                   be useful to trace.  For example, trace=open,close,read,write means to only trace those four system calls.   Be
                   careful  when making inferences about the user/kernel boundary if only a subset of system calls are being moni‐
                   tored.  The default is trace=all.


       -e trace=file
                   Trace all system calls which take a file name as an argument.  You can think of this  as  an  abbreviation  for
                   -e trace=open,stat,chmod,unlink,...  which is useful to seeing what files the process is referencing.  Further‐
                   more, using the abbreviation will ensure that you don't accidentally forget to include a call like lstat in the
                   list.  Betchya woulda forgot that one.


       -e trace=process
                   Trace  all system calls which involve process management.  This is useful for watching the fork, wait, and exec
                   steps of a process.


       -e trace=network
                   Trace all the network related system calls.


       -e trace=signal
                   Trace all signal related system calls.


       -e trace=ipc
                   Trace all IPC related system calls.


       -e trace=desc
                   Trace all file descriptor related system calls.


       -e abbrev=set
                   Abbreviate the output from printing each member of large structures.  The default is abbrev=all.  The -v option
                   has the effect of abbrev=none.

       -e verbose=set
                   Dereference structures for the specified set of system calls.  The default is verbose=all.


       -e raw=set  Print  raw,  undecoded  arguments for the specified set of system calls.  This option has the effect of causing
                   all arguments to be printed in hexadecimal.  This is mostly useful if you don't trust the decoding or you  need
                   to know the actual numeric value of an argument.


       -e signal=set
                   Trace  only the specified subset of signals.  The default is signal=all.  For example, signal =! SIGIO (or sig‐
                   nal=!io) causes SIGIO signals not to be traced.


       -e read=set Perform a full hexadecimal and ASCII dump of all the data read from file descriptors listed  in  the  specified
                   set.   For  example,  to see all input activity on file descriptors 3 and 5 use -e read=3,5.  Note that this is
                   independent from the normal tracing of the read(2) system call which is controlled by the option -e trace=read.


       -e write=set
                   Perform a full hexadecimal and ASCII dump of all the data written to file descriptors listed in  the  specified
                   set.   For example, to see all output activity on file descriptors 3 and 5 use -e write=3,5.  Note that this is
                   independent from  the  normal  tracing  of  the  write(2)  system  call  which  is  controlled  by  the  option
                   -e trace=write.


       -o filename Write  the  trace  output to the file filename rather than to stderr.  Use filename.pid if -ff is used.  If the
                   argument begins with `|' or with `!' then the rest of the argument is treated as a command and  all  output  is
                   piped  to  it.   This is convenient for piping the debugging output to a program without affecting the redirec‐
                   tions of executed programs.


       -O overhead Set the overhead for tracing system calls to overhead microseconds.  This is useful for overriding the  default
                   heuristic  for  guessing how much time is spent in mere measuring when timing system calls using the -c option.
                   The accuracy of the heuristic can be gauged by timing a given program run without tracing (using  time(1))  and
                   comparing the accumulated system call time to the total produced using -c.


       -p pid      Attach  to the process with the process ID pid and begin tracing.  The trace may be terminated at any time by a
                   keyboard interrupt signal (CTRL-C).  strace will respond by detaching itself from the traced process(es)  leav‐
                   ing it (them) to continue running.  Multiple -p options can be used to attach to up to 32 processes in addition
                   to command (which is optional if at least one -p option is given).

                   指定 trace 某一个进程,类似 gdb -p

       -s strsize  Specify the maximum string size to print (the default is 32).  Note that filenames are not  considered  strings
                   and are always printed in full.


       -S sortby   Sort  the  output of the histogram printed by the -c option by the specified criterion.  Legal values are time,
                   calls, name, and nothing (default is time).


       -u username Run command with the user ID, group ID, and supplementary groups of username.  This option is only useful  when
                   running as root and enables the correct execution of setuid and/or setgid binaries.  Unless this option is used
                   setuid and setgid programs are executed without effective privileges.


       -E var=val  Run command with var=val in its list of environment variables.


       -E var      Remove var from the inherited list of environment variables before passing it on to the command.


DIAGNOSTICS
       When command exits, strace exits with the same exit status.  If command is terminated by a signal, strace terminates itself
       with the same signal, so that strace can be used as a wrapper process transparent to the invoking parent process.


       When using -p, the exit status of strace is zero unless there was an unexpected error in doing the tracing.


SETUID INSTALLATION
       If  strace  is  installed  setuid to root then the invoking user will be able to attach to and trace processes owned by any
       user.  In addition setuid and setgid programs will be executed and traced with the  correct  effective  privileges.   Since
       only users trusted with full root privileges should be allowed to do these things, it only makes sense to install strace as
       setuid to root when the users who can execute it are restricted to those users who have this trust.  For example, it  makes
       sense  to  install a special version of strace with mode `rwsr-xr--', user root and group trace, where members of the trace
       group are trusted users.  If you do use this feature, please remember to install a non-setuid version of strace  for  ordi‐
       nary lusers to use.


ltrace能够跟踪进程的库函数调用,它会显现出哪个库函数被调用,而strace则是跟踪程序的每个系统调用.
下面是一个ltrace与strace的对比

1)系统调用的输出对比

我们用输出hello world的程序做如下测试:
#include <stdio.h>
int
main ()
{
        printf("Hello world!\n");
        return 0;
}
gcc hello.c -o hello


用ltrace跟踪hello程序,如下:

ltrace ./hello
__libc_start_main(0x8048354, 1, 0xbf869aa4, 0x8048390, 0x8048380 <unfinished ...>
puts("Hello world!"Hello world!
)                                                             = 13
+++ exited (status 0) +++

注:我们看到程序调用了puts();库函数做了输出.

用strace跟踪hello程序,如下:
strace ./hello
execve("./hello", ["./hello"], [/* 30 vars */]) = 0
brk(0)                                  = 0x83d4000
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f8a000
access("/etc/ld.so.preload", R_OK)      = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY)      = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=80846, ...}) = 0
mmap2(NULL, 80846, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7f76000
close(3)                                = 0
open("/lib/libc.so.6", O_RDONLY)        = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0000?\270"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=1576952, ...}) = 0
mmap2(0xb6e000, 1295780, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb6e000
mmap2(0xca5000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x137) = 0xca5000
mmap2(0xca8000, 9636, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xca8000
close(3)                                = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f75000
set_thread_area({entry_number:-1 -> 6, base_addr:0xb7f756c0, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}) = 0
mprotect(0xca5000, 8192, PROT_READ)     = 0
mprotect(0xb6a000, 4096, PROT_READ)     = 0
munmap(0xb7f76000, 80846)               = 0
fstat64(1, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 0), ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f89000
write(1, "Hello world!\n", 13Hello world!
)          = 13
exit_group(0)                           = ?
Process 2874 detached

注:我们看到程序调用write()系统调用做了输出,同时strace还把hello程序运行时所做的系统调用都打印出来了.

同样的ltrace也可以把系统调用都打印出来,如下:
ltrace -S ./hello
SYS_execve(NULL, NULL, NULL)                                                     = 0xffffffda
SYS_brk(NULL)                                                                    = -38
SYS_mmap2(0, 4096, 3, 34, -1)                                                    = -38
SYS_access(0xb6798f, 4, 0xb6afc0, 0, 0xb6b6b4)                                   = -38
SYS_open("/etc/ld.so.cache", 0, 00)                                              = -38
SYS_fstat64(3, 0xbfba5414, 0xb6afc0, -1, 3)                                      = -38
SYS_mmap2(0, 80846, 1, 2, 3)                                                     = -38
SYS_close(3)                                                                     = -38
SYS_open("/lib/libc.so.6", 0, 027756452364???, 512)                              = -38
SYS_read(3, )                                                                    = -38
SYS_fstat64(3, 0xbfba5478, 0xb6afc0, 4, 1)                                       = -38
SYS_mmap2(0xb6e000, 0x13c5a4, 5, 2050, 3)                                        = -38
SYS_mmap2(0xca5000, 12288, 3, 2066, 3)                                           = -38
SYS_mmap2(0xca8000, 9636, 3, 50, -1)                                             = -38
SYS_close(3)                                                                     = -38
SYS_mmap2(0, 4096, 3, 34, -1)                                                    = -38
SYS_set_thread_area(0xbfba5960, 0xb7f5e6c0, 243, 0xb6afc0, 0)                    = -38
SYS_mprotect(0xca5000, 8192, 1, 7676, 0xca6e74)                                  = -38
SYS_mprotect(0xb6a000, 4096, 1, 896, 0)                                          = -38
SYS_munmap(0xb7f5f000, 80846 <unfinished ...>
__libc_start_main(0x8048354, 1, 0xbfba5dd4, 0x8048390, 0x8048380 <unfinished ...>
puts("Hello world!" <unfinished ...>
SYS_fstat64(1, 0xbfba5c20, 0xca6ff4, 0xca74c0, 0xca74c0)                         = 0
SYS_mmap2(0, 4096, 3, 34, -1)                                                    = 0xb7f72000
SYS_write(1, "Hello world!\n", 13Hello world!
)                                               = 13
<... puts resumed> )                                                             = 13
SYS_exit_group(0 <no return ...>
+++ exited (status 0) +++

注:我们看到它实际是用SYS_write系统调用来做打印输出,其实write()函数是SYS_write的封装,SYS_write是真正的系统调用.



二)ltrace/strace的耗时

ltrace -c dd if=/dev/urandom of=/dev/null count=1000
1000+0 records in
1000+0 records out
512000 bytes (512 kB) copied, 2.31346 seconds, 221 kB/s
% time     seconds  usecs/call     calls      function
------ ----------- ----------- --------- --------------------
 84.88    4.942763        4942      1000 read
  9.41    0.548195         548      1000 write
  5.06    0.294716         294      1001 memcpy
  0.11    0.006365        2121         3 __fprintf_chk
  0.09    0.004969        4969         1 dcgettext
  0.08    0.004850         808         6 strlen
  0.05    0.002667        2667         1 setlocale
  0.04    0.002579         644         4 sigaction
  0.03    0.001869         467         4 close
  0.03    0.001825         912         2 open64
  0.03    0.001519         759         2 malloc
  0.02    0.001187         593         2 __sprintf_chk
  0.02    0.001176         588         2 clock_gettime
  0.02    0.001169         389         3 __errno_location
  0.02    0.001012         506         2 dcngettext
  0.01    0.000814         814         1 lseek64
  0.01    0.000757         757         1 getopt_long
  0.01    0.000744         744         1 textdomain
  0.01    0.000742         247         3 strchr
  0.01    0.000634         634         1 __strtoull_internal
  0.01    0.000602         602         1 getpagesize
  0.01    0.000542         271         2 localeconv
  0.01    0.000340         340         1 fclose
  0.01    0.000300         300         1 memmove
  0.00    0.000228         114         2 sigismember
  0.00    0.000184         184         1 getenv
  0.00    0.000170          85         2 sigaddset
  0.00    0.000148          74         2 free
  0.00    0.000093          93         1 bindtextdomain
  0.00    0.000090          90         1 sigemptyset
  0.00    0.000090          90         1 __cxa_atexit
  0.00    0.000088          88         1 __ctype_b_loc
  0.00    0.000074          74         1 __fpending
------ ----------- ----------- --------- --------------------
100.00    5.823501                  3057 total

注:
使用-c选项,ltrace输出由进程创建的库调用,输出结果以调用过程的时间为准进行排序,因为是从urandom设备上读,这是一种产生随机数的设备,完成后,写入null设备.
所以读过程花费了较多的时间.
使用ltrace去捕获运行时函数,就好像在进程上系上了一个调试工具,它占据了ltrace大量的时间,这里ltrace一共消耗了5.8秒

我们再来看一下strace所花费的时间,如下:

strace -c dd if=/dev/urandom of=/dev/null count=1000
1000+0 records in
1000+0 records out
512000 bytes (512 kB) copied, 0.894482 seconds, 572 kB/s
Process 3049 detached
% time     seconds  usecs/call     calls    errors syscall
------ ----------- ----------- --------- --------- ----------------
 82.85    0.159393         159      1005           read
 15.07    0.028995          29      1003           write
  0.78    0.001494        1494         1           execve
  0.42    0.000814         136         6           rt_sigaction
  0.23    0.000446          41        11         1 close
  0.23    0.000435          73         6           fstat64
  0.21    0.000412          32        13           mmap2
  0.21    0.000408          29        14         6 open
  0.00    0.000000           0         1         1 access
  0.00    0.000000           0         3           brk
  0.00    0.000000           0         2           munmap
  0.00    0.000000           0         1           uname
  0.00    0.000000           0         4           mprotect
  0.00    0.000000           0         1           _llseek
  0.00    0.000000           0         1           rt_sigprocmask
  0.00    0.000000           0         1           getrlimit
  0.00    0.000000           0         1           set_thread_area
  0.00    0.000000           0         1           set_tid_address
  0.00    0.000000           0         2           clock_gettime
  0.00    0.000000           0         1           set_robust_list
------ ----------- ----------- --------- --------- ----------------
100.00    0.192397                  2078         8 total

注:
strace一共消耗了0.19秒,strace把性能提升了30倍,这主要是strace在跟踪系统调用的时候不需要动态库,而ltrace是根据动态库来分析程序运行的.
所以ltrace也只能跟踪动态库,不能跟踪静态库.
事实上我们用ltrace和strace都可以发现程序在哪个系统调用时发生了性能瓶径.
ltrace用-T,而strace也用-T.


三)ltrace与strace的相同点

ltrace与strace都可以指定PID,即对运行中的程序进行跟踪.
ltrace -p PID与strace -p PID

ltrace与strace都可以跟踪程序fork或clone子进程.
ltrace是用-f参数,而strace是用-f(fork/clone)和-F(vfork).

CC

http://www.ibm.com/developerworks/cn/linux/l-tsl/

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值