linux 下进程间通讯: 共享文件

2023-10-28

       共享文件算是比较传统的进程间数据交换的一种方式,但是由于涉及到不同进程间反复文件I/O,难免显得有些效率低下。共享文件的本质,实际是就是某个进程向共享为念写入数据,一个或多个进程从文件中读取数据,有可能涉及到进程之间资源竞争的问题,这里就涉及到了使用文件锁。

部分代码源于《Linux中国》

一、生产者代码示例

/*******************************
 **  生产者
 *****************************/
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>

#define FileName "data.dat"

void report_and_exit(const char* msg) {
    perror(msg);
    exit(-1); /* EXIT_FAILURE */
}


int main() {

    // 初始化文件锁
    struct flock lock;
    lock.l_type = F_WRLCK;    /* read/write (exclusive) lock  互斥*/
    lock.l_whence = SEEK_SET; /* base for seek offsets */
    lock.l_start = 0;         /* 1st byte in file */
    lock.l_len = 0;           /* 0 here means 'until EOF' */
    lock.l_pid = getpid();    /* process id */

    // 打开文件
    int fd; /* file descriptor to identify a file within a process */
    if ((fd = open(FileName, O_RDONLY)) < 0)  /* -1 signals an error */
        report_and_exit("open to read failed...");

    // 优雅的判断,先获取锁的状态,判断文件是否已经加锁,已经加锁则退出
    /* If the file is write-locked, we can't continue. */
    fcntl(fd, F_GETLK, &lock); /* sets lock.l_type to F_UNLCK if no write lock */
    if (lock.l_type != F_UNLCK)
        report_and_exit("file is still write locked...");

    // 为加锁,则改变锁的状态为读锁
    lock.l_type = F_RDLCK; /* prevents any writing during the reading */
    if (fcntl(fd, F_SETLK, &lock) < 0)
        report_and_exit("can't get a read-only lock...");

    // 读文件,并输出到标准输出(屏幕)
    /* Read the bytes (they happen to be ASCII codes) one at a time. */
    int c; /* buffer for read bytes */
    while (read(fd, &c, 1) > 0)    /* 0 signals EOF */
        write(STDOUT_FILENO, &c, 1); /* write one byte to the standard output */


    // 锁的释放
    /* Release the lock explicitly. */
    lock.l_type = F_UNLCK;
    if (fcntl(fd, F_SETLK, &lock) < 0)
        report_and_exit("explicit unlocking failed...");

    // 关闭文件
    close(fd);
    return 0;
}

二、消费者示例代码

/*******************************
 **  消费者
 *****************************/
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
#define FileName "data.dat"

void report_and_exit(const char* msg) {
    perror(msg);
    exit(-1); /* EXIT_FAILURE */
}

int main() {

    // 锁的初始化
    struct flock lock;
    lock.l_type = F_WRLCK;    /* read/write (exclusive) lock */
    lock.l_whence = SEEK_SET; /* base for seek offsets */
    lock.l_start = 0;         /* 1st byte in file */
    lock.l_len = 0;           /* 0 here means 'until EOF' */
    lock.l_pid = getpid();    /* process id */

    // 打开文件
    int fd; /* file descriptor to identify a file within a process */
    if ((fd = open(FileName, O_RDONLY)) < 0)  /* -1 signals an error */
        report_and_exit("open to read failed...");

    // 判断文件释放已加锁,加锁则退出
    /* If the file is write-locked, we can't continue. */

    do{
        fcntl(fd, F_GETLK, &lock); /* sets lock.l_type to F_UNLCK if no write lock */
        if (lock.l_type != F_UNLCK){
            //report_and_exit("file is still write locked...");
            printf("file is still write locked...\n")

            // 打印当前对文件加锁的进程
            printf("file lock is held by process:%ld\n",lock.l_pid);
            sleep(1);
        }
    }while(lock.l_type != F_UNLCK);

    // 未加锁,设置文件锁为读锁
    lock.l_type = F_RDLCK; /* prevents any writing during the reading */
    if (fcntl(fd, F_SETLK, &lock) < 0)
        report_and_exit("can't get a read-only lock...");

    // 读文件并打印到标准输出
    /* Read the bytes (they happen to be ASCII codes) one at a time. */
    int c; /* buffer for read bytes */
    while (read(fd, &c, 1) > 0)    /* 0 signals EOF */
        write(STDOUT_FILENO, &c, 1); /* write one byte to the standard output */

    // 释放锁
    /* Release the lock explicitly. */
    lock.l_type = F_UNLCK;
    if (fcntl(fd, F_SETLK, &lock) < 0)
        report_and_exit("explicit unlocking failed...");

    // 关闭文件
    close(fd);
    return 0;
}

三、说说文件锁:

1、flock

FLOCK(2)                                                     Linux Programmer's Manual                                                    FLOCK(2)

NAME
       flock - apply or remove an advisory lock on an open file
               
SYNOPSIS
       #include <sys/file.h>

       int flock(int fd, int operation);

看这个说明,flock - 对一个open的文件 使用或者移除一个建议锁

LOCK_SH  Place a shared lock.  More than one process may hold a shared lock for a given file at a given time.

LOCK_EX  Place an exclusive lock.  Only one process may hold an exclusive lock for a given file at a given time.

LOCK_UN  Remove an existing lock held by this process.

2、fcntl

#include <unistd.h>
#include <fcntl.h>
int fcntl(int fd, int cmd, ... /* arg */ );


功能:对文件描述符的操作
参数:
fd:指定要操作的文件描述符
cmd:对文件描述符的操作指令
        F_SETLK:设置一把锁。具体是加锁还是解锁,取决于锁的类型。非阻塞
        F_SETLKW: 和上边功能一样,但是是阻塞。
        F_GETLK: 测试是否可以加锁,如果在l_type成员里返回F_UNLCK.可以加锁
                                否则不可以。那么在l_pid成员里返回加互斥锁的进程的pid。

...:可变参数,参数的个数和参数的类型取决于cmd

返回值:
成功   0
错误  -1   errno被设置

struct flock{
    ...
        short l_type;    /* Type of lock: F_RDLCK,
                              F_WRLCK, F_UNLCK */
        short l_whence;  /* How to interpret l_start:
                    SEEK_SET, SEEK_CUR, SEEK_END */
        off_t l_start;   /* Starting offset for lock */
        off_t l_len;     /* Number of bytes to lock */
        pid_t l_pid;     /* PID of process blocking our lock  (set by F_GETLK and F_OFD_GETLK) */
        ...
}

 fcntl 比起flock函数来说,强大太多了。这里不做过多赘述,在共享文件部分,我们只用到了其为打开文件加锁的方法,其他的可以参考下面帮助文档部分:

FCNTL(2)                                                     Linux Programmer's Manual                                                    FCNTL(2)

NAME
       fcntl - manipulate file descriptor

SYNOPSIS
       #include <unistd.h>
       #include <fcntl.h>

       int fcntl(int fd, int cmd, ... /* arg */ );

DESCRIPTION
       fcntl() performs one of the operations described below on the open file descriptor fd.  The operation is determined by cmd.

       fcntl() can take an optional third argument.  Whether or not this argument is required is determined by cmd.  The required argument type is
       indicated in parentheses after each cmd name (in most cases, the required type is int, and we identify the argument using the name arg), or
       void is specified if the argument is not required.

       Certain  of  the operations below are supported only since a particular Linux kernel version.  The preferred method of checking whether the
       host kernel supports a particular operation is to invoke fcntl() with the desired cmd value and then test whether the call failed with EIN‐
       VAL, indicating that the kernel does not recognize this value.

   Duplicating a file descriptor
       F_DUPFD (int)
              Find the lowest numbered available file descriptor greater than or equal to arg and make it be a copy of fd.  This is different from
              dup2(2), which uses exactly the descriptor specified.

              On success, the new descriptor is returned.

              See dup(2) for further details.

       F_DUPFD_CLOEXEC (int; since Linux 2.6.24)
              As for F_DUPFD, but additionally set the close-on-exec flag for the duplicate descriptor.  Specifying this flag permits a program to
              avoid  an  additional  fcntl() F_SETFD operation to set the FD_CLOEXEC flag.  For an explanation of why this flag is useful, see the
              description of O_CLOEXEC in open(2).

   File descriptor flags
       The following commands manipulate the flags associated with a file descriptor.  Currently, only one such flag is defined:  FD_CLOEXEC,  the
       close-on-exec flag.  If the FD_CLOEXEC bit is 0, the file descriptor will remain open across an execve(2), otherwise it will be closed.

       F_GETFD (void)
              Read the file descriptor flags; arg is ignored.

       F_SETFD (int)
              Set the file descriptor flags to the value specified by arg.

       In  multithreaded  programs, using fcntl() F_SETFD to set the close-on-exec flag at the same time as another thread performs a fork(2) plus
       execve(2) is vulnerable to a race condition that may unintentionally leak the file descriptor to the program executed in the child process.
       See the discussion of the O_CLOEXEC flag in open(2) for details and a remedy to the problem.

   File status flags
       Each  open  file description has certain associated status flags, initialized by open(2) and possibly modified by fcntl().  Duplicated file
       descriptors (made with dup(2), fcntl(F_DUPFD), fork(2), etc.) refer to the same open file description, and thus share the same file  status
       flags.

       The file status flags and their semantics are described in open(2).

       F_GETFL (void)
              Get the file access mode and the file status flags; arg is ignored.

       F_SETFL (int)
              Set  the  file  status  flags  to the value specified by arg.  File access mode (O_RDONLY, O_WRONLY, O_RDWR) and file creation flags
              (i.e., O_CREAT, O_EXCL, O_NOCTTY, O_TRUNC) in arg are ignored.  On Linux  this  command  can  change  only  the  O_APPEND,  O_ASYNC,
              O_DIRECT, O_NOATIME, and O_NONBLOCK flags.  It is not possible to change the O_DSYNC and O_SYNC flags; see BUGS, below.

   Advisory record locking
       Linux  implements  traditional  ("process-associated")  UNIX record locks, as standardized by POSIX.  For a Linux-specific alternative with
       better semantics, see the discussion of open file description locks below.

       F_SETLK, F_SETLKW, and F_GETLK are used to acquire, release, and test for the existence of record locks (also known  as  byte-range,  file-
       segment,  or file-region locks).  The third argument, lock, is a pointer to a structure that has at least the following fields (in unspeci‐
       fied order).

           struct flock {
               ...
               short l_type;    /* Type of lock: F_RDLCK,
                                   F_WRLCK, F_UNLCK */
               short l_whence;  /* How to interpret l_start:
                                   SEEK_SET, SEEK_CUR, SEEK_END */
               off_t l_start;   /* Starting offset for lock */
               off_t l_len;     /* Number of bytes to lock */
               pid_t l_pid;     /* PID of process blocking our lock
                                   (set by F_GETLK and F_OFD_GETLK) */
               ...
           };

       The l_whence, l_start, and l_len fields of this structure specify the range of bytes we wish to lock.  Bytes past the end of the  file  may
       be locked, but not bytes before the start of the file.

       l_start  is  the  starting offset for the lock, and is interpreted relative to either: the start of the file (if l_whence is SEEK_SET); the
       current file offset (if l_whence is SEEK_CUR); or the end of the file (if l_whence is SEEK_END).  In the final two cases, l_start can be  a
       negative number provided the offset does not lie before the start of the file.

       l_len specifies the number of bytes to be locked.  If l_len is positive, then the range to be locked covers bytes l_start up to and includ‐
       ing l_start+l_len-1.  Specifying 0 for l_len has the special meaning: lock all bytes starting at the location  specified  by  l_whence  and
       l_start through to the end of file, no matter how large the file grows.

       POSIX.1-2001  allows  (but  does  not  require)  an  implementation  to  support a negative l_len value; if l_len is negative, the interval
       described by lock covers bytes l_start+l_len up to and including l_start-1.  This is supported by Linux since kernel  versions  2.4.21  and
       2.5.49.

       The  l_type  field can be used to place a read (F_RDLCK) or a write (F_WRLCK) lock on a file.  Any number of processes may hold a read lock
       (shared lock) on a file region, but only one process may hold a write lock (exclusive lock).  An exclusive lock excludes all  other  locks,
       both shared and exclusive.  A single process can hold only one type of lock on a file region; if a new lock is applied to an already-locked
       region, then the existing lock is converted to the new lock type.  (Such conversions may involve splitting, shrinking, or  coalescing  with
       an existing lock if the byte range specified by the new lock does not precisely coincide with the range of the existing lock.)

       F_SETLK (struct flock *)
              Acquire  a  lock  (when  l_type  is  F_RDLCK  or  F_WRLCK)  or release a lock (when l_type is F_UNLCK) on the bytes specified by the
              l_whence, l_start, and l_len fields of lock.  If a conflicting lock is held by another process, this call returns -1 and sets  errno
              to  EACCES  or EAGAIN.  (The error returned in this case differs across implementations, so POSIX requires a portable application to
              check for both errors.)

       F_SETLKW (struct flock *)
              As for F_SETLK, but if a conflicting lock is held on the file, then wait for that lock to be released.  If a signal is caught  while
              waiting,  then  the  call  is  interrupted and (after the signal handler has returned) returns immediately (with return value -1 and
              errno set to EINTR; see signal(7)).

       F_GETLK (struct flock *)
              On input to this call, lock describes a lock we would like to place on the file.  If the lock could  be  placed,  fcntl()  does  not
              actually place it, but returns F_UNLCK in the l_type field of lock and leaves the other fields of the structure unchanged.

              If one or more incompatible locks would prevent this lock being placed, then fcntl() returns details about one of those locks in the
              l_type, l_whence, l_start, and l_len fields of lock.  If the conflicting lock is a  traditional  (process-associated)  record  lock,
              then  the l_pid field is set to the PID of the process holding that lock.  If the conflicting lock is an open file description lock,
              then l_pid is set to -1.  Note that the returned information may already be out of date by the time the caller inspects it.

       In order to place a read lock, fd must be open for reading.  In order to place a write lock, fd must be open for writing.   To  place  both
       types of lock, open a file read-write.

       When  placing locks with F_SETLKW, the kernel detects deadlocks, whereby two or more processes have their lock requests mutually blocked by
       locks held by the other processes.  For example, suppose process A holds a write lock on byte 100 of a file, and process B  holds  a  write
       lock  on  byte 200.  If each process then attempts to lock the byte already locked by the other process using F_SETLKW, then, without dead‐
       lock detection, both processes would remain blocked indefinitely.  When the kernel detects such deadlocks, it causes one  of  the  blocking
       lock  requests to immediately fail with the error EDEADLK; an application that encounters such an error should release some of its locks to
       allow other applications to proceed before attempting regain the locks that it requires.  Circular deadlocks involving more than  two  pro‐
       cesses are also detected.  Note, however, that there are limitations to the kernel's deadlock-detection algorithm; see BUGS.

       As well as being removed by an explicit F_UNLCK, record locks are automatically released when the process terminates.

       Record locks are not inherited by a child created via fork(2), but are preserved across an execve(2).

       Because  of the buffering performed by the stdio(3) library, the use of record locking with routines in that package should be avoided; use
       read(2) and write(2) instead.

       The record locks described above are associated with the process (unlike the open file description locks described below).  This  has  some
       unfortunate consequences:

       *  If  a  process  closes any file descriptor referring to a file, then all of the process's locks on that file are released, regardless of
          the file descriptor(s) on which the locks were obtained.  This is bad: it means that a process can lose its locks  on  a  file  such  as
          /etc/passwd or /etc/mtab when for some reason a library function decides to open, read, and close the same file.

       *  The  threads  in  a  process share locks.  In other words, a multithreaded program can't use record locking to ensure that threads don't
          simultaneously access the same region of a file.

       Open file description locks solve both of these problems.

   Open file description locks (non-POSIX)
       Open file description locks are advisory byte-range locks whose operation is in most respects identical to  the  traditional  record  locks
       described  above.  This lock type is Linux-specific, and available since Linux 3.15.  (There is a proposal with the Austin Group to include
       this lock type in the next revision of POSIX.1.)  For an explanation of open file descriptions, see open(2).

       The principal difference between the two lock types is that whereas traditional record locks are  associated  with  a  process,  open  file
       description locks are associated with the open file description on which they are acquired, much like locks acquired with flock(2).  Conse‐
       quently (and unlike traditional advisory record locks), open file description  locks  are  inherited  across  fork(2)  (and  clone(2)  with
       CLONE_FILES), and are only automatically released on the last close of the open file description, instead of being released on any close of
       the file.

       Conflicting lock combinations (i.e., a read lock and a write lock or two write locks) where one lock is an open file description  lock  and
       the other is a traditional record lock conflict even when they are acquired by the same process on the same file descriptor.

       Open  file  description locks placed via the same open file description (i.e., via the same file descriptor, or via a duplicate of the file
       descriptor created by fork(2), dup(2), fcntl(2) F_DUPFD, and so on) are always compatible: if a new lock is placed  on  an  already  locked
       region, then the existing lock is converted to the new lock type.  (Such conversions may result in splitting, shrinking, or coalescing with
       an existing lock as discussed above.)

       On the other hand, open file description locks may conflict with each other when they are acquired via different  open  file  descriptions.
       Thus,  the  threads  in  a  multithreaded program can use open file description locks to synchronize access to a file region by having each
       thread perform its own open(2) on the file and applying locks via the resulting file descriptor.

       As with traditional advisory locks, the third argument to fcntl(), lock, is a pointer to an flock structure.  By contrast with  traditional
       record locks, the l_pid field of that structure must be set to zero when using the commands described below.

       The commands for working with open file description locks are analogous to those used with traditional locks:

       F_OFD_SETLK (struct flock *)
              Acquire  an  open file description lock (when l_type is F_RDLCK or F_WRLCK) or release an open file description lock (when l_type is
              F_UNLCK) on the bytes specified by the l_whence, l_start, and l_len fields of lock.  If  a  conflicting  lock  is  held  by  another
              process, this call returns -1 and sets errno to EAGAIN.

       F_OFD_SETLKW (struct flock *)
              As  for  F_OFD_SETLK,  but if a conflicting lock is held on the file, then wait for that lock to be released.  If a signal is caught
              while waiting, then the call is interrupted and (after the signal handler has returned) returns immediately (with  return  value  -1
              and errno set to EINTR; see signal(7)).

       F_OFD_GETLK (struct flock *)
              On  input  to  this  call,  lock  describes  an open file description lock we would like to place on the file.  If the lock could be
              placed, fcntl() does not actually place it, but returns F_UNLCK in the l_type field of lock and  leaves  the  other  fields  of  the
              structure  unchanged.  If one or more incompatible locks would prevent this lock being placed, then details about one of these locks
              are returned via lock, as described above for F_GETLK.

       In the current implementation, no deadlock detection is performed for open file description locks.  (This contrasts with process-associated
       record locks, for which the kernel does perform deadlock detection.)

   Mandatory locking
       Warning: the Linux implementation of mandatory locking is unreliable.  See BUGS below.

       By default, both traditional (process-associated) and open file description record locks are advisory.  Advisory locks are not enforced and
       are useful only between cooperating processes.

       Both lock types can also be mandatory.  Mandatory locks are enforced for all processes.  If a process  tries  to  perform  an  incompatible
       access  (e.g.,  read(2)  or  write(2))  on  a file region that has an incompatible mandatory lock, then the result depends upon whether the
       O_NONBLOCK flag is enabled for its open file description.  If the O_NONBLOCK flag is not enabled, then the system call is blocked until the
       lock  is  removed or converted to a mode that is compatible with the access.  If the O_NONBLOCK flag is enabled, then the system call fails
       with the error EAGAIN.

       To make use of mandatory locks, mandatory locking must be enabled both on the filesystem that contains the file to be locked,  and  on  the
       file  itself.   Mandatory  locking is enabled on a filesystem using the "-o mand" option to mount(8), or the MS_MANDLOCK flag for mount(2).
       Mandatory locking is enabled on a file by disabling group execute permission on the file and enabling the set-group-ID permission bit  (see
       chmod(1) and chmod(2)).

       Mandatory  locking  is not specified by POSIX.  Some other systems also support mandatory locking, although the details of how to enable it
       vary across systems.

   Managing signals
       F_GETOWN, F_SETOWN, F_GETOWN_EX, F_SETOWN_EX, F_GETSIG and F_SETSIG are used to manage I/O availability signals:

       F_GETOWN (void)
              Return (as the function result) the process ID or process group currently receiving SIGIO and SIGURG  signals  for  events  on  file
              descriptor fd.  Process IDs are returned as positive values; process group IDs are returned as negative values (but see BUGS below).
              arg is ignored.

       F_SETOWN (int)
              Set the process ID or process group ID that will receive SIGIO and SIGURG signals for events on file descriptor fd to the  ID  given
              in  arg.   A  process  ID is specified as a positive value; a process group ID is specified as a negative value.  Most commonly, the
              calling process specifies itself as the owner (that is, arg is specified as getpid(2)).

              If you set the O_ASYNC status flag on a file descriptor by using the F_SETFL command of fcntl(), a SIGIO  signal  is  sent  whenever
              input or output becomes possible on that file descriptor.  F_SETSIG can be used to obtain delivery of a signal other than SIGIO.  If
              this permission check fails, then the signal is silently discarded.

              Sending a signal to the owner process (group) specified by F_SETOWN is subject to the same permissions checks as are  described  for
              kill(2), where the sending process is the one that employs F_SETOWN (but see BUGS below).

              If  the file descriptor fd refers to a socket, F_SETOWN also selects the recipient of SIGURG signals that are delivered when out-of-
              band data arrives on that socket.  (SIGURG is sent in any situation where select(2) would report the socket  as  having  an  "excep‐
              tional condition".)

              The following was true in 2.6.x kernels up to and including kernel 2.6.11:

                     If  a  nonzero  value  is  given to F_SETSIG in a multithreaded process running with a threading library that supports thread
                     groups (e.g., NPTL), then a positive value given to F_SETOWN has a different meaning: instead of being a process ID identify‐
                     ing  a whole process, it is a thread ID identifying a specific thread within a process.  Consequently, it may be necessary to
                     pass F_SETOWN the result of gettid(2) instead of getpid(2) to get sensible results when F_SETSIG is used.  (In current  Linux
                     threading  implementations,  a main thread's thread ID is the same as its process ID.  This means that a single-threaded pro‐
                     gram can equally use gettid(2) or getpid(2) in this scenario.)  Note, however, that the statements in this paragraph  do  not
                     apply  to  the  SIGURG signal generated for out-of-band data on a socket: this signal is always sent to either a process or a
                     process group, depending on the value given to F_SETOWN.

              The above behavior was accidentally dropped in Linux 2.6.12, and won't be restored.  From Linux 2.6.32 onward,  use  F_SETOWN_EX  to
              target SIGIO and SIGURG signals at a particular thread.

       F_GETOWN_EX (struct f_owner_ex *) (since Linux 2.6.32)
              Return  the  current  file descriptor owner settings as defined by a previous F_SETOWN_EX operation.  The information is returned in
              the structure pointed to by arg, which has the following form:

                  struct f_owner_ex {
                      int   type;
                      pid_t pid;
                  };

              The type field will have one of the values F_OWNER_TID, F_OWNER_PID, or F_OWNER_PGRP.  The pid field is a  positive  integer  repre‐
              senting a thread ID, process ID, or process group ID.  See F_SETOWN_EX for more details.

       F_SETOWN_EX (struct f_owner_ex *) (since Linux 2.6.32)
              This  operation  performs a similar task to F_SETOWN.  It allows the caller to direct I/O availability signals to a specific thread,
              process, or process group.  The caller specifies the target of signals via arg, which is a pointer to a f_owner_ex  structure.   The
              type field has one of the following values, which define how pid is interpreted:

              F_OWNER_TID
                     Send the signal to the thread whose thread ID (the value returned by a call to clone(2) or gettid(2)) is specified in pid.

              F_OWNER_PID
                     Send the signal to the process whose ID is specified in pid.

              F_OWNER_PGRP
                     Send  the  signal to the process group whose ID is specified in pid.  (Note that, unlike with F_SETOWN, a process group ID is
                     specified as a positive value here.)

       F_GETSIG (void)
              Return (as the function result) the signal sent when input or output becomes possible.  A value of zero means SIGIO  is  sent.   Any
              other  value  (including  SIGIO)  is the signal sent instead, and in this case additional info is available to the signal handler if
              installed with SA_SIGINFO.  arg is ignored.

       F_SETSIG (int)
              Set the signal sent when input or output becomes possible to the value given in arg.  A value of zero  means  to  send  the  default
              SIGIO signal.  Any other value (including SIGIO) is the signal to send instead, and in this case additional info is available to the
              signal handler if installed with SA_SIGINFO.

              By using F_SETSIG with a nonzero value, and setting SA_SIGINFO for the signal handler (see sigaction(2)),  extra  information  about
              I/O  events  is  passed  to  the handler in a siginfo_t structure.  If the si_code field indicates the source is SI_SIGIO, the si_fd
              field gives the file descriptor associated with the event.  Otherwise, there is no indication which file  descriptors  are  pending,
              and  you  should use the usual mechanisms (select(2), poll(2), read(2) with O_NONBLOCK set etc.) to determine which file descriptors
              are available for I/O.

              Note that the file descriptor provided in si_fd is the one that that was specified during the F_SETSIG operation.  This can lead  to
              an  unusual corner case.  If the file descriptor is duplicated (dup(2) or similar), and the original file descriptor is closed, then
              I/O events will continue to be generated, but the si_fd field will contain the number of the now closed file descriptor.

              By selecting a real time signal (value >= SIGRTMIN), multiple I/O events may be queued using the same signal numbers.   (Queuing  is
              dependent on available memory.)  Extra information is available if SA_SIGINFO is set for the signal handler, as above.

              Note  that Linux imposes a limit on the number of real-time signals that may be queued to a process (see getrlimit(2) and signal(7))
              and if this limit is reached, then the kernel reverts to delivering SIGIO, and this signal is delivered to the entire process rather
              than to a specific thread.

       Using these mechanisms, a program can implement fully asynchronous I/O without using select(2) or poll(2) most of the time.

       The use of O_ASYNC is specific to BSD and Linux.  The only use of F_GETOWN and F_SETOWN specified in POSIX.1 is in conjunction with the use
       of the SIGURG signal on sockets.  (POSIX does not specify the SIGIO signal.)  F_GETOWN_EX, F_SETOWN_EX, F_GETSIG, and F_SETSIG  are  Linux-
       specific.   POSIX  has asynchronous I/O and the aio_sigevent structure to achieve similar things; these are also available in Linux as part
       of the GNU C Library (Glibc).

   Leases
       F_SETLEASE and F_GETLEASE (Linux 2.4 onward) are used (respectively) to establish a new lease, and retrieve the current lease, on the  open
       file  description  referred  to  by  the  file descriptor fd.  A file lease provides a mechanism whereby the process holding the lease (the
       "lease holder") is notified (via delivery of a signal) when a process (the "lease breaker")  tries  to  open(2)  or  truncate(2)  the  file
       referred to by that file descriptor.

       F_SETLEASE (int)
              Set or remove a file lease according to which of the following values is specified in the integer arg:

              F_RDLCK
                     Take  out  a  read lease.  This will cause the calling process to be notified when the file is opened for writing or is trun‐
                     cated.  A read lease can be placed only on a file descriptor that is opened read-only.

              F_WRLCK
                     Take out a write lease.  This will cause the caller to be notified when the file is opened for reading or writing or is trun‐
                     cated.  A write lease may be placed on a file only if there are no other open file descriptors for the file.

              F_UNLCK
                     Remove our lease from the file.

       Leases  are  associated  with an open file description (see open(2)).  This means that duplicate file descriptors (created by, for example,
       fork(2) or dup(2)) refer to the same lease, and this lease may be modified or released using any of these  descriptors.   Furthermore,  the
       lease  is  released  by  either an explicit F_UNLCK operation on any of these duplicate descriptors, or when all such descriptors have been
       closed.

       Leases may be taken out only on regular files.  An unprivileged process may take out a lease only on a file whose UID (owner)  matches  the
       filesystem UID of the process.  A process with the CAP_LEASE capability may take out leases on arbitrary files.

       F_GETLEASE (void)
              Indicates what type of lease is associated with the file descriptor fd by returning either F_RDLCK, F_WRLCK, or F_UNLCK, indicating,
              respectively, a read lease , a write lease, or no lease.  arg is ignored.

       When a process (the "lease breaker") performs an open(2) or truncate(2) that conflicts with a lease established via F_SETLEASE, the  system
       call  is blocked by the kernel and the kernel notifies the lease holder by sending it a signal (SIGIO by default).  The lease holder should
       respond to receipt of this signal by doing whatever cleanup is required in preparation for the file  to  be  accessed  by  another  process
       (e.g.,  flushing  cached  buffers)  and  then either remove or downgrade its lease.  A lease is removed by performing an F_SETLEASE command
       specifying arg as F_UNLCK.  If the lease holder currently holds a write lease on the file, and the lease breaker is opening  the  file  for
       reading,  then it is sufficient for the lease holder to downgrade the lease to a read lease.  This is done by performing an F_SETLEASE com‐
       mand specifying arg as F_RDLCK.

       If the lease holder fails to downgrade or remove the lease within the number of seconds specified  in  /proc/sys/fs/lease-break-time,  then
       the kernel forcibly removes or downgrades the lease holder's lease.

       Once a lease break has been initiated, F_GETLEASE returns the target lease type (either F_RDLCK or F_UNLCK, depending on what would be com‐
       patible with the lease breaker) until the lease holder voluntarily downgrades or removes the lease or the kernel forcibly does so after the
       lease break timer expires.

       Once  the  lease  has been voluntarily or forcibly removed or downgraded, and assuming the lease breaker has not unblocked its system call,
       the kernel permits the lease breaker's system call to proceed.

       If the lease breaker's blocked open(2) or truncate(2) is interrupted by a signal handler, then the system call fails with the error  EINTR,
       but  the  other  steps still occur as described above.  If the lease breaker is killed by a signal while blocked in open(2) or truncate(2),
       then the other steps still occur as described above.  If the lease breaker specifies the O_NONBLOCK flag when  calling  open(2),  then  the
       call immediately fails with the error EWOULDBLOCK, but the other steps still occur as described above.

       The  default signal used to notify the lease holder is SIGIO, but this can be changed using the F_SETSIG command to fcntl().  If a F_SETSIG
       command is performed (even one specifying SIGIO), and the signal handler is established using SA_SIGINFO, then the handler will  receive  a
       siginfo_t  structure as its second argument, and the si_fd field of this argument will hold the descriptor of the leased file that has been
       accessed by another process.  (This is useful if the caller holds leases against multiple files.)

   File and directory change notification (dnotify)
       F_NOTIFY (int)
              (Linux 2.4 onward) Provide notification when the directory referred to by fd or any of the files that it contains is  changed.   The
              events to be notified are specified in arg, which is a bit mask specified by ORing together zero or more of the following bits:

              DN_ACCESS   A file was accessed (read(2), pread(2), readv(2), and similar)
              DN_MODIFY   A file was modified (write(2), pwrite(2), writev(2), truncate(2), ftruncate(2), and similar).
              DN_CREATE   A file was created (open(2), creat(2), mknod(2), mkdir(2), link(2), symlink(2), rename(2) into this directory).
              DN_DELETE   A file was unlinked (unlink(2), rename(2) to another directory, rmdir(2)).
              DN_RENAME   A file was renamed within this directory (rename(2)).
              DN_ATTRIB   The attributes of a file were changed (chown(2), chmod(2), utime(2), utimensat(2), and similar).

              (In order to obtain these definitions, the _GNU_SOURCE feature test macro must be defined before including any header files.)

              Directory  notifications  are  normally  "one-shot", and the application must reregister to receive further notifications.  Alterna‐
              tively, if DN_MULTISHOT is included in arg, then notification will remain in effect until explicitly removed.

              A series of F_NOTIFY requests is cumulative, with the events in arg being added to the set already monitored.  To disable  notifica‐
              tion of all events, make an F_NOTIFY call specifying arg as 0.

              Notification  occurs  via  delivery of a signal.  The default signal is SIGIO, but this can be changed using the F_SETSIG command to
              fcntl().  (Note that SIGIO is one of the nonqueuing standard signals; switching to the use of a real-time signal means that multiple
              notifications  can  be  queued to the process.)  In the latter case, the signal handler receives a siginfo_t structure as its second
              argument (if the handler was established using SA_SIGINFO) and the si_fd field of this structure contains the file descriptor  which
              generated the notification (useful when establishing notification on multiple directories).

              Especially  when  using  DN_MULTISHOT,  a  real  time  signal should be used for notification, so that multiple notifications can be
              queued.

              NOTE: New applications should use the inotify interface (available since kernel 2.6.13), which provides a  much  superior  interface
              for obtaining notifications of filesystem events.  See inotify(7).

   Changing the capacity of a pipe
       F_SETPIPE_SZ (int; since Linux 2.6.35)
              Change the capacity of the pipe referred to by fd to be at least arg bytes.  An unprivileged process can adjust the pipe capacity to
              any value between the system page size and the limit defined in /proc/sys/fs/pipe-max-size (see proc(5)).  Attempts to set the  pipe
              capacity below the page size are silently rounded up to the page size.  Attempts by an unprivileged process to set the pipe capacity
              above the limit in /proc/sys/fs/pipe-max-size yield the error EPERM; a privileged process (CAP_SYS_RESOURCE) can override the limit.
              When  allocating  the  buffer for the pipe, the kernel may use a capacity larger than arg, if that is convenient for the implementa‐
              tion.  The actual capacity that is set is returned as the function result.  Attempting to set the pipe  capacity  smaller  than  the
              amount of buffer space currently used to store data produces the error EBUSY.

       F_GETPIPE_SZ (void; since Linux 2.6.35)
              Return (as the function result) the capacity of the pipe referred to by fd.

   File Sealing
       File  seals  limit  the  set of allowed operations on a given file.  For each seal that is set on a file, a specific set of operations will
       fail with EPERM on this file from now on.  The file is said to be sealed.  The default set of seals depends on the type of  the  underlying
       file and filesystem.  For an overview of file sealing, a discussion of its purpose, and some code examples, see memfd_create(2).

       Currently,  only  the  tmpfs  filesystem supports sealing.  On other filesystems, all fcntl(2) operations that operate on seals will return
       EINVAL.

       Seals are a property of an inode.  Thus, all open file descriptors referring to the same inode share the same set of  seals.   Furthermore,
       seals can never be removed, only added.

       F_ADD_SEALS (int; since Linux 3.17)
              Add the seals given in the bit-mask argument arg to the set of seals of the inode referred to by the file descriptor fd.  Seals can‐
              not be removed again.  Once this call succeeds, the seals are enforced by the kernel immediately.   If  the  current  set  of  seals
              includes F_SEAL_SEAL (see below), then this call will be rejected with EPERM.  Adding a seal that is already set is a no-op, in case
              F_SEAL_SEAL is not set already.  In order to place a seal, the file descriptor fd must be writable.

       F_GET_SEALS (void; since Linux 3.17)
              Return (as the function result) the current set of seals of the inode referred to by fd.  If no seals are set, 0  is  returned.   If
              the file does not support sealing, -1 is returned and errno is set to EINVAL.

       The following seals are available:

       F_SEAL_SEAL
              If  this seal is set, any further call to fcntl(2) with F_ADD_SEALS will fail with EPERM.  Therefore, this seal prevents any modifi‐
              cations to the set of seals itself.  If the initial set of seals of a file includes F_SEAL_SEAL, then this  effectively  causes  the
              set of seals to be constant and locked.

       F_SEAL_SHRINK
              If  this  seal  is set, the file in question cannot be reduced in size.  This affects open(2) with the O_TRUNC flag as well as trun‐
              cate(2) and ftruncate(2).  Those calls will fail with EPERM if you try to shrink the file in question.  Increasing the file size  is
              still possible.

       F_SEAL_GROW
              If  this seal is set, the size of the file in question cannot be increased.  This affects write(2) beyond the end of the file, trun‐
              cate(2), ftruncate(2), and fallocate(2).  These calls will fail with EPERM if you use them to increase the file size.  If  you  keep
              the size or shrink it, those calls still work as expected.

       F_SEAL_WRITE
              If  this seal is set, you cannot modify the contents of the file.  Note that shrinking or growing the size of the file is still pos‐
              sible and allowed.  Thus, this seal is normally used in combination with one of the other seals.  This  seal  affects  write(2)  and
              fallocate(2)  (only in combination with the FALLOC_FL_PUNCH_HOLE flag).  Those calls will fail with EPERM if this seal is set.  Fur‐
              thermore, trying to create new shared, writable memory-mappings via mmap(2) will also fail with EPERM.

              Setting F_SEAL_WRITE via fcntl(2) with F_ADD_SEALS will fail with EBUSY if any writable, shared mapping exists.  Such mappings  must
              be  unmapped  before you can add this seal.  Furthermore, if there are any asynchronous I/O operations (io_submit(2)) pending on the
              file, all outstanding writes will be discarded.

RETURN VALUE
       For a successful call, the return value depends on the operation:

       F_DUPFD  The new descriptor.

       F_GETFD  Value of file descriptor flags.

       F_GETFL  Value of file status flags.

       F_GETLEASE
                Type of lease held on file descriptor.

       F_GETOWN Value of descriptor owner.

       F_GETSIG Value of signal sent when read or write becomes possible, or zero for traditional SIGIO behavior.

       F_GETPIPE_SZ, F_SETPIPE_SZ
                The pipe capacity.

       F_GET_SEALS
                A bit mask identifying the seals that have been set for the inode referred to by fd.

       All other commands
                Zero.

       On error, -1 is returned, and errno is set appropriately.

ERRORS
       EACCES or EAGAIN
              Operation is prohibited by locks held by other processes.

       EAGAIN The operation is prohibited because the file has been memory-mapped by another process.

       EBADF  fd is not an open file descriptor

       EBADF  cmd is F_SETLK or F_SETLKW and the file descriptor open mode doesn't match with the type of lock requested.

       EBUSY  cmd is F_SETPIPE_SZ and the new pipe capacity specified in arg is smaller than the amount of buffer space currently  used  to  store
              data in the pipe.

       EBUSY  cmd is F_ADD_SEALS, arg includes F_SEAL_WRITE, and there exists a writable, shared mapping on the file referred to by fd.

       EDEADLK
              It was detected that the specified F_SETLKW command would cause a deadlock.

       EFAULT lock is outside your accessible address space.

       EINTR  cmd is F_SETLKW or F_OFD_SETLKW and the operation was interrupted by a signal; see signal(7).

       EINTR  cmd  is  F_GETLK, F_SETLK, F_OFD_GETLK, or F_OFD_SETLK, and the operation was interrupted by a signal before the lock was checked or
              acquired.  Most likely when locking a remote file (e.g., locking over NFS), but can sometimes happen locally.

       EINVAL The value specified in cmd is not recognized by this kernel.

       EINVAL cmd is F_ADD_SEALS and arg includes an unrecognized sealing bit.

       EINVAL cmd is F_ADD_SEALS or F_GET_SEALS and the filesystem containing the inode referred to by fd does not support sealing.

       EINVAL cmd is F_DUPFD and arg is negative or is greater than the maximum allowable value (see the  discussion  of  RLIMIT_NOFILE  in  getr‐
              limit(2)).

       EINVAL cmd is F_SETSIG and arg is not an allowable signal number.

       EINVAL cmd is F_OFD_SETLK, F_OFD_SETLKW, or F_OFD_GETLK, and l_pid was not specified as zero.

       EMFILE cmd is F_DUPFD and the per-process limit on the number of open file descriptors has been reached.

       ENOLCK Too many segment locks open, lock table is full, or a remote locking protocol failed (e.g., locking over NFS).

       ENOTDIR
              F_NOTIFY was specified in cmd, but fd does not refer to a directory.

       EPERM  Attempted to clear the O_APPEND flag on a file that has the append-only attribute set.

       EPERM  cmd was F_ADD_SEALS, but fd was not open for writing or the current set of seals on the file already includes F_SEAL_SEAL.

CONFORMING TO
       SVr4,  4.3BSD, POSIX.1-2001.  Only the operations F_DUPFD, F_GETFD, F_SETFD, F_GETFL, F_SETFL, F_GETLK, F_SETLK, and F_SETLKW are specified
       in POSIX.1-2001.

       F_GETOWN and F_SETOWN are specified in POSIX.1-2001.  (To get their definitions, define either _BSD_SOURCE, or _XOPEN_SOURCE with the value
       500 or greater, or _POSIX_C_SOURCE with the value 200809L or greater.)

       F_DUPFD_CLOEXEC  is  specified  in  POSIX.1-2008.   (To  get  this definition, define _POSIX_C_SOURCE with the value 200809L or greater, or
       _XOPEN_SOURCE with the value 700 or greater.)

       F_GETOWN_EX, F_SETOWN_EX, F_SETPIPE_SZ, F_GETPIPE_SZ, F_GETSIG, F_SETSIG, F_NOTIFY, F_GETLEASE, and F_SETLEASE are Linux-specific.  (Define
       the _GNU_SOURCE macro to obtain these definitions.)

       F_OFD_SETLK,  F_OFD_SETLKW,  and  F_OFD_GETLK are Linux-specific (and one must define _GNU_SOURCE to obtain their definitions), but work is
       being done to have them included in the next version of POSIX.1.

       F_ADD_SEALS and F_GET_SEALS are Linux-specific.

NOTES
       The errors returned by dup2(2) are different from those returned by F_DUPFD.

   File locking
       The original Linux fcntl() system call was not designed to handle large file offsets (in the flock structure).  Consequently, an  fcntl64()
       system  call was added in Linux 2.4.  The newer system call employs a different structure for file locking, flock64, and corresponding com‐
       mands, F_GETLK64, F_SETLK64, and F_SETLKW64.  However, these details can be ignored by applications  using  glibc,  whose  fcntl()  wrapper
       function transparently employs the more recent system call where it is available.

       The errors returned by dup2(2) are different from those returned by F_DUPFD.

   Record locks
       Since kernel 2.0, there is no interaction between the types of lock placed by flock(2) and fcntl().

       Several systems have more fields in struct flock such as, for example, l_sysid.  Clearly, l_pid alone is not going to be very useful if the
       process holding the lock may live on a different machine.

       The original Linux fcntl() system call was not designed to handle large file offsets (in the flock structure).  Consequently, an  fcntl64()
       system  call was added in Linux 2.4.  The newer system call employs a different structure for file locking, flock64, and corresponding com‐
       mands, F_GETLK64, F_SETLK64, and F_SETLKW64.  However, these details can be ignored by applications  using  glibc,  whose  fcntl()  wrapper
       function transparently employs the more recent system call where it is available.

   Record locking and NFS
       Before  Linux 3.12, if an NFSv4 client loses contact with the server for a period of time (defined as more than 90 seconds with no communi‐
       cation), it might lose and regain a lock without ever being aware of the fact.  (The period of time after which contact is assumed lost  is
       known  as  the  NFSv4 leasetime.  On a Linux NFS server, this can be determined by looking at /proc/fs/nfsd/nfsv4leasetime, which expresses
       the period in seconds.  The default value for this file is 90.)  This scenario potentially risks data  corruption,  since  another  process
       might acquire a lock in the intervening period and perform file I/O.

       Since  Linux  3.12,  if an NFSv4 client loses contact with the server, any I/O to the file by a process which "thinks" it holds a lock will
       fail until that process closes and reopens the file.  A kernel parameter, nfs.recover_lost_locks, can be set to 1 to  obtain  the  pre-3.12
       behavior,  whereby  the  client will attempt to recover lost locks when contact is reestablished with the server.  Because of the attendant
       risk of data corruption, this parameter defaults to 0 (disabled).

BUGS
   F_SETFL
       It is not possible to use F_SETFL to change the state of the O_DSYNC and O_SYNC flags.  Attempts to change the state  of  these  flags  are
       silently ignored.

   F_GETOWN
       A  limitation  of  the Linux system call conventions on some architectures (notably i386) means that if a (negative) process group ID to be
       returned by F_GETOWN falls in the range -1 to -4095, then the return value is wrongly interpreted by glibc as an error in the system  call;
       that  is,  the  return value of fcntl() will be -1, and errno will contain the (positive) process group ID.  The Linux-specific F_GETOWN_EX
       operation avoids this problem.  Since glibc version 2.11, glibc makes the kernel F_GETOWN problem invisible by implementing F_GETOWN  using
       F_GETOWN_EX.

   F_SETOWN
       In  Linux  2.4  and  earlier,  there is bug that can occur when an unprivileged process uses F_SETOWN to specify the owner of a socket file
       descriptor as a process (group) other than the caller.  In this case, fcntl() can return -1 with errno set to EPERM, even  when  the  owner
       process (group) is one that the caller has permission to send signals to.  Despite this error return, the file descriptor owner is set, and
       signals will be sent to the owner.

   Deadlock detection
       The deadlock-detection algorithm employed by the kernel when dealing with F_SETLKW requests can yield both  false  negatives  (failures  to
       detect  deadlocks,  leaving  a set of deadlocked processes blocked indefinitely) and false positives (EDEADLK errors when there is no dead‐
       lock).  For example, the kernel limits the lock depth of its dependency search to 10 steps, meaning  that  circular  deadlock  chains  that
       exceed  that  size  will not be detected.  In addition, the kernel may falsely indicate a deadlock when two or more processes created using
       the clone(2) CLONE_FILES flag place locks that appear (to the kernel) to conflict.

   Mandatory locking
       The Linux implementation of mandatory locking is subject to race conditions which render it unreliable: a write(2) call that overlaps  with
       a  lock may modify data after the mandatory lock is acquired; a read(2) call that overlaps with a lock may detect changes to data that were
       made only after a write lock was acquired.  Similar races exist between mandatory locks and mmap(2).  It is therefore inadvisable  to  rely
       on mandatory locking.

SEE ALSO
       dup2(2), flock(2), open(2), socket(2), lockf(3), capabilities(7), feature_test_macros(7)

       locks.txt,  mandatory-locking.txt, and dnotify.txt in the Linux kernel source directory Documentation/filesystems/ (on older kernels, these
       files are directly under the Documentation/ directory, and mandatory-locking.txt is called mandatory.txt)

COLOPHON
       This page is part of release 4.04 of the Linux man-pages project.  A description of the project, information about reporting bugs, and  the
       latest version of this page, can be found at http://www.kernel.org/doc/man-pages/.

Linux                                                               2015-12-28             

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

linux 下进程间通讯: 共享文件 的相关文章

  • 怎样才能使 Windows 成为一个开箱即用的 POSIX 兼容操作系统?

    这个问题的动机是我的一个牵强的梦想 即 nix 平台上可用的许多优秀软件可以轻松移植到 Windows 微软最近对开源和开放性采取了不同的方法 所以我真的很想知道如果微软有这样的倾向 这样的事情会有多可行 我很好奇的一些更具体的事情是 是否
  • 在 Unix 中添加用户和组

    有谁知道在unix中添加用户和组以及删除它们的api吗 我想以编程方式执行此操作 谢谢 坦率 我开始查看一些系统调用并发现以下内容 请注意 它们具有不同的标准 因此并非所有标准都可以在您的 Unix 版本上运行 getpwent setpw
  • 在 OSX 和 GNU 中使用“find”删除带有数字的文件名

    我正在尝试搜索一个文件并删除名称中包含数字的类似文件 我的文件 txt from myfile 00 04 version txt myfile 00 txt find E iregex myfile 0 9 1 txt 删除 myfile
  • awk: hping: 打印 icmp 发起/接收之间的差异

    我有以下输出hping http ports su net hping在 OpenBSD 上 hping icmp ts www openbsd org HPING www openbsd org re0 129 128 5 194 icm
  • Python 中的 Unix cat 函数 (cat * > merged.txt)? [复制]

    这个问题在这里已经有答案了 一旦建立了目录 有没有办法在Python中使用Unix中的cat函数或类似的函数 我想将 files 1 3 合并到 merged txt 我通常会在 Unix 中找到该目录 然后运行 cat gt merged
  • 无法从 jenkins 作为后台进程运行 nohup 命令

    更新 根据下面的讨论 我编辑了我的答案以获得更准确的描述 我正在尝试从詹金斯运行 nohup 命令 完整的命令是 nohup java jar home jar server process 0 35 jar prod gt gt var
  • 两种情况或 if 哪个更快? [关闭]

    Closed 这个问题不符合堆栈溢出指南 help closed questions 目前不接受答案 我必须制作一个 非常 轻的脚本 它将接受用户的选项并调用脚本中的函数来执行一些任务 现在我可以使用 IF 和 CASE 选项 但我想知道两
  • 如何查看正在运行的 tcsh 版本?

    如何查看我的 UNIX 终端中运行的 tcsh 的当前版本 看着那 这version多变的 echo version tcsh 6 14 00 Astron 2005 03 25 i386 intel linux options wide
  • 从 UNIX 命令行向串行端口发送字节?

    我想使用命令行将字节流发送到串行端口 这可能吗 我的串口位于 dev cu usbserial A700dYoR在我的 Mac 上 例如 如果我想将整数 50 或字符串 data 发送到该串行端口 我该怎么做 我对 UNIX 的了解非常有限
  • waitpid() 的作用是什么?

    有什么用waitpid 它通常用于等待特定进程完成 或者如果您使用特殊标志则更改状态 基于其进程 ID 也称为pid 它还可用于等待一组子进程中的任何一个 无论是来自特定进程组的子进程还是当前进程的任何子进程 See here http l
  • 通过 sed 使用 unix 变量将数据附加到每行末尾[重复]

    这个问题在这里已经有答案了 我有一个文件 我想使用 SED 将值附加到每行末尾的 unix 变量中 我已经通过 AWK 实现了这一点 但我想在 SED 中实现 像这样的东西 我已经尝试过以下命令 但它不起作用 sed i s BATCH R
  • 在两次之间每分钟执行一次 Cronjob

    我需要在 crontab 中每分钟运行一个 bash 脚本8 45am and 9 50am每天的 Code 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 8 home pull sh gt ho
  • 使用 Grep 查找两个短语之间的文本块(包括短语)

    是否可以使用 grep 来高亮所有以以下内容开头的文本 mutablePath CGPathCreateMutable 并以以下内容结尾 CGPathAddPath skinMutablePath NULL mutablePath 这两个短
  • 如何在unix中移动或复制“find”命令列出的文件?

    我有使用下面的命令看到的某些文件的列表 但是如何将列出的这些文件复制到另一个文件夹 例如 test 中 find mtime 1 exec du hc 添加到 Eric Jablow 的答案中 这是一个可能的解决方案 它对我有用 linux
  • 无法在 Unix shell 脚本上操作日期(日期:非法选项 -- d)

    我需要将当前日期添加 10 天并将其分配给变量 但我收到错误 date illegal option d 这是我尝试过的 gt NEW expration DATE date d 10 days Result date illegal op
  • 第二次ftruncate失败

    我试图在首次成功执行 shm open 和 ftruncate 后超出共享内存对象 这是代码 char uuid GenerateUUID int fd shm open uuid O RDWR O CREAT O EXCL S IRUSR
  • 直接向pbs脚本传递参数

    有没有办法在提交作业之前直接将参数传递给 pbs 脚本 我需要循环遍历由不同数字表示的文件列表 并应用脚本来分析每个文件 我能想到的最好的办法如下 bin sh for i 1 i lt 10 i do export FILENUM i q
  • 如何回忆上一个 bash 命令的参数?

    Bash 有没有办法回忆上一个命令的参数 我通常这样做vi file c其次是gcc file c Bash 有没有办法回忆上一个命令的参数 您可以使用 or 调用上一个命令的最后一个参数 Also Alt can be used to r
  • 使用 sed 将反斜杠替换为斜杠[重复]

    这个问题在这里已经有答案了 我需要更换 with 我有一个文件 其中包含 test test2 test3 test4 I tried VRS Ruta cat ruta lst sed s g sed s g output test te
  • 如何将命令输出作为多个参数传递给另一个命令

    我想将命令的每个输出作为多个参数传递给第二个命令 例如 grep pattern input returns file1 file2 file3 我想复制这些输出 例如 cp file1 file1 bac cp file2 file2 b

随机推荐

  • BFS 迷宫问题+打印路径

    问题 定义一个二维数组N M 其中2 lt N lt 10 2 lt M lt 10 如5 5数组下所示 int maze 5 5 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 它表示一
  • pycharm无限制更新码

    http www lookdiv com 密码7788
  • SPI通讯的数据交互及图片显示

    这个项目耗时三个月 前两个月攻克技术难关 后一个月进行功能联调 也是我很长时间没有更新的原因 一个项目从初期的evt到最终的pvt 离不开大家的合作 从前期的prd核对到最终的项目交付 耗费了我大量心血 期间遇到的问题不计其数 所以说一个好
  • C语言数据结构篇——栈的顺序存储

    作者名 Demo不是emo 主页面链接 主页传送门创作初心 对于计算机的学习者来说 初期的学习无疑是最迷茫和难以坚持的 中后期主要是经验和能力的提高 我也刚接触计算机1年 也在不断的探索 在CSDN写博客主要是为了分享自己的学习历程 学习方
  • STL源码阅读-functor与adapter

    为什么要用仿函数 函数指针不灵活 难以与STL其他组件配合使用 Adapter 将一个class的接口转换为另一个class的接口 使原本因接口不兼容而不能合作的classes 可以一起运作 STL中的adapter function ad
  • LocalDateTime、LocalDate、LocalTime与Date对比

    Java8以前 我们一直长期使用Date和Calendar来处理时间 而在使用Date处理日期时间问题上会存在一定的隐患 产生线程不安全的问题 最典型的就是在一定负载并发量的情况下使用SimpleDateFormat引发的线程安全性问题 如
  • strcpy_s不接受两个参数的问题

    char p new char 25 strcpy s p 20 wenmingjie 才能成功运行 而strcpy s p wenmingjie 不能 同理 strname char new char strlen str 1 strcp
  • win32 x64 x86 区别

  • JAVA引用传递导致的方法中重新赋值失败

    在工作中遇到需要对某些参数进行业务逻辑过滤处理 在原方法中过滤成功 将业务过滤代码抽成公共方法后 过滤失败 当时情况如下 原代码 public static void main String args Boolean filter true
  • three.js 用中文字作为贴图

    面的内容使用canvas2drenderer 目前已经废弃 如果不想用这个可以直接 看2019年8月份补充的内容 闲来无事 把three js其中有一个例子改了一下 变成从一个中心点喷射出中文字的例子 效果图 可以在codePen上查看效果
  • 基于卷积神经网络进行股价预测(Matlab代码实现)

    目录 1 概述 2 运行结果 3 参考文献 4 Matlab代码 1 概述 CNN是一种人工神经网络 CNN的结构可以分为3层 卷积层 Convolutional Layer 主要作用是提取特征 池化层 Max Pooling Layer
  • Mariadb-Host '192.168.*.*' is not allowed to connect to this MariaDB server"的解决方法

    对Mariadb进行赋权限即可 具体操作方法如下 cmd进入mysql mysql u root p 之后会提示输入密码 进入后 grant all privileges on to root 192 168 identified by r
  • Redis系列之事务

    前言 Redis的事务其实是有事务一说的 但是Redis的事务其实又不能完全意义上称为事务 它其实是一种比较弱的事务 甚至可以理解为他是一种批量提交操作 今天我们来简单认识下什么是Redis的事务吧 什么是Redis的事务 Redis的事务
  • leetcode 周赛(hard),使所有区间的异或结果为零(js实现)

    给你一个整数数组 nums 和一个整数 k 区间 left right left lt right 的 异或结果 是对下标位于 left 和 right 包括 left 和 right 之间所有元素进行 XOR 运算的结果 nums lef
  • 华为OD机试真题- 上班之路【2023】【JAVA、Python、C++】

    题目描述 Jungle生活在美丽的蓝鲸城 大马路都是方方正正 但是每天马路的封闭情况都不一样 地图由以下元素组成 1 空地 可以达到 2 路障 不可达到 3 S Jungle的家 4 T 公司 其中我们会限制Jungle拐弯的次数 同时Ju
  • NLP扎实基础4:FastText模型与Pytorch复现

    FastText 论文 Joulin Armand et al Bag of tricks for efficient text classification arXiv preprint arXiv 1607 01759 2016 Fas
  • WEB常见的攻击方式有哪些?如何防御?

    一 什么是web攻击 Web攻击 WebAttack 是针对用户上网行为或网站服务器等设备进行攻击的行为 如植入恶意代码 修改网站权限 获取网站用户隐私信息等等 Web应用程序的安全性是任何基于Web业务的重要组成部分 确保Web应用程序安
  • grep常用方法

    grep常用方法 grep常用参数 grep匹配多个关键字 0 grep高亮 1 grep 字符串 2 反向匹配grep v 字符串 不包括 grep 本身 3 grep E 同时匹配多个关键字 或 关系 grep过滤空白行和注释行 4 同
  • 软件工程期末复习汇总(非常详细)

    期末复习 文章目录 期末复习 第1章 概论 软件过程模型 瀑布模型 演化模型 增量模型 原型模型 螺旋模型 喷泉模型 基于构件的开发模型 形式方法模型 第2章 系统工程 可行性分析 经济可行性 技术可行性 法律可行性 第3章 需求工程 需求
  • linux 下进程间通讯: 共享文件

    共享文件算是比较传统的进程间数据交换的一种方式 但是由于涉及到不同进程间反复文件I O 难免显得有些效率低下 共享文件的本质 实际是就是某个进程向共享为念写入数据 一个或多个进程从文件中读取数据 有可能涉及到进程之间资源竞争的问题 这里就涉