Provided by: manpages-ja-dev_0.5.0.0.20221215+dfsg-1_all bug

名前

       semctl - System V セマフォの制御操作を行なう

書式

       #include <sys/types.h>
       #include <sys/ipc.h>
       #include <sys/sem.h>

       int semctl(int semid, int semnum, int cmd, ...);

説明

       semctl()   は、 semid で指定された System V セマフォ集合 (semaphore set)  またはセマフォ集
       合の semnun 番目のセマフォに対して、 cmd で指定された制御操作を行なう  (集合内のセマフォの
       番号は 0 から始まる)。

       この関数は、  cmd の値に依存して、3 個または 4 個の引数を持つ。 引数が 4 個の場合、第 4 引
       数の型は union semun である。 呼び出し元プログラムは、 この共用体 (union) を以下のように定
       義しなければならない。

           union semun {
               int              val;    /* SETVAL の値 */
               struct semid_ds *buf;    /* IPC_STAT, IPC_SET 用のバッファー */
               unsigned short  *array;  /* GETALL, SETALL 用の配列 */
               struct seminfo  *__buf;  /* IPC_INFO 用のバッファー
                                           (Linux 固有) */
           };

       semid_ds データ構造体は <sys/sem.h> で以下のように定義されている:

           struct semid_ds {
               struct ipc_perm sem_perm;  /* 所有権と許可 */
               time_t          sem_otime; /* 最後の semop の時刻 */
               time_t          sem_ctime; /* 作成時刻/semctl() により
                                             最後に変更が行われた時刻 */
               unsigned long   sem_nsems; /* 集合内のセマフォの数 */
           };

       The fields of the semid_ds structure are as follows:

       sem_perm   This is an ipc_perm structure (see below) that specifies the access permissions
                  on the semaphore set.

       sem_otime  Time of last semop(2)  system call.

       sem_ctime  Time of creation of semaphore set or time of last semctl()  IPCSET, SETVAL,  or
                  SETALL operation.

       sem_nsems  Number  of semaphores in the set.  Each semaphore of the set is referenced by a
                  nonnegative integer ranging from 0 to sem_nsems-1.

       ipc_perm 構造体は以下のように定義されている (強調されたフィールドは IPC_SET を使って設定可
       能である):

           struct ipc_perm {
               key_t          __key; /* semget(2) に与えられるキー */
               uid_t          uid;   /* 所有者 (owner) の実効 UID */
               gid_t          gid;   /* 所有者の実効 GID */
               uid_t          cuid;  /* 作成者 (creator) の実効 UID */
               gid_t          cgid;  /* 作成者の実効 GID */
               unsigned short mode;  /* 許可 */
               unsigned short __seq; /* シーケンス番号 */
           };

       The least significant 9 bits of the mode field of the ipc_perm structure define the access
       permissions for the shared memory segment.  The permission bits are as follows:

       0400   Read by user
       0200   Write by user
       0040   Read by group
       0020   Write by group
       0004   Read by others
       0002   Write by others

       In effect, "write" means "alter" for a semaphore set.  Bits  0100,  0010,  and  0001  (the
       execute bits) are unused by the system.

       cmd として有効な値は次の通りである。

       IPC_STAT
              semid に関連づけられたカーネルデータ構造体の情報を arg.buf で指された semid_ds 構造
              体へコピーする。 semnum 引数は無視される。 呼び出したプロセスはそのセマフォ集合に対
              する 読み込み許可を持たなければならない。

       IPC_SET
              Write the values of some members of the semid_ds structure pointed to by arg.buf to
              the kernel data structure associated with this semaphore  set,  updating  also  its
              sem_ctime member.

              The following members of the structure are updated: sem_perm.uid, sem_perm.gid, and
              (the least significant 9 bits of)  sem_perm.mode.

              The effective UID of the calling process must match the  owner  (sem_perm.uid)   or
              creator  (sem_perm.cuid)   of  the semaphore set, or the caller must be privileged.
              The argument semnum is ignored.

       IPC_RMID
              セマフォ集合をただちに削除し、その集合上の semop(2)  コールでブロックされている全て
              のプロセスを目覚めさせる  (エラー値が返されて、 errnoEIDRM が設定される)。 呼び
              出したプロセスの実効ユーザー ID  が  そのセマフォ集合の作成者または所有者と一致する
              か、 呼び出した人が特権を持たなければならない。 semnum 引数は無視される。

       IPC_INFO (Linux 固有)
              システム全体でのセマフォの制限とパラメーターに関する情報を、 arg.__buf が指す構造体
              に入れて返す。 この構造体は seminfo 型である。 seminfo_GNU_SOURCE  機能検査マク
              ロが定義された場合に <sys/sem.h> で以下のように定義される:

                  struct  seminfo {
                      int semmap;  /* セマフォマップの最大エントリー数;
                                      カーネル内では未使用 */
                      int semmni;  /* セマフォ集合の最大数 */
                      int semmns;  /* 全セマフォ集合中のセマフォの
                                      最大数 */
                      int semmnu;  /* アンドゥ構造体のシステム全体での
                                      最大数; カーネル内では未使用 */
                      int semmsl;  /* 一つのセマフォ集合の最大セマフォ数 */
                      int semopm;  /* semop(2) に渡す操作の最大数 */
                      int semume;  /* プロセスあたりのアンドゥエントリー
                                      の最大数; カーネル内では未使用 */
                      int semusz;  /* 構造体 sem_undo のサイズ */
                      int semvmx;  /* セマフォの最大値 */
                      int semaem;  /* セマフォの調整 (semaphore adjustment;
                                       SEM_UNDO) のために記録される最大値 */
                  };

              設定  semmsl, semmns, semopm, semmni/proc/sys/kernel/sem 経由で変更可能である。
              詳しくは proc(5)  を参照。

       SEM_INFO (Linux 固有)
              IPC_INFO のときと同じ情報を格納した seminfo 構造体を返す。 但し、以下のフィールドに
              はセマフォが消費しているシステム資源に   関する情報が格納される点が異なる。  semusz
              フィールドは現在システム上に存在するセマフォ集合の数を返す。 semaem  フィールドはシ
              ステム上の全てのセマフォ集合に含まれる セマフォの総数を返す。

       SEM_STAT (Linux 固有)
              IPC_STAT と同じく semid_ds 構造体を返す。 但し、 semid 引数は、セマフォ識別子ではな
              く、システム上の全てのセマフォ集合 に関する情報を管理するカーネルの内部配列へのイン
              デックスである。

       SEM_STAT_ANY (Linux 固有, Linux 4.17 以降)
              Return  a  seminfo  structure  containing  the  same  information  as for SEM_STAT.
              However, sem_perm.mode is not checked for read access for semid  meaning  that  any
              user  can  employ  this  operation  (just as any user may read /proc/sysvipc/sem to
              obtain the same information).

       GETALL 集合の全てのセマフォの semval の値 (現在の値) を arg.array に返す。 semnum 引数は無
              視される。   呼び出したプロセスはそのセマフォ集合に読み込み許可を持たなければならな
              い。

       GETNCNT
              Return the semncnt value for the semnum-th semaphore of the set (i.e.,  the  number
              of  processes  waiting for the semaphore's value to increase).  The calling process
              must have read permission on the semaphore set.

       GETPID 集合の semnum 番目のセマフォの sempid  の値を返す。この値は、そのセマフォに対して最
              後に操作を行ったプロセスの  PID である (ただし「バグ」を参照)。呼び出したプロセスは
              そのセマフォ集合に読み込み許可を持たなければならない。

       GETVAL 集合の semnum 番目のセマフォの semval (セマフォの値) を返す。  呼び出したプロセスは
              そのセマフォ集合に読み込み許可を持たなければならない。

       GETZCNT
              集合の  semnum 番目のセマフォの semzcnt の値 (つまり、そのセマフォの値が 0 になるの
              を待っているプロセスの数)  を返す。呼び出したプロセスはそのセマフォ集合に読み込み許
              可を持たなければならない。

       SETALL 集合の全てのセマフォの  semval 値に arg.array で指定された値を設定する。 その集合に
              関連する semid_ds 構造体の sem_ctime メンバーの値も更新する。  全てのプロセスのセマ
              フォの変更についてのアンドゥエントリー (semop(2) を参照) は消去 (clear) される。 セ
              マフォの値の変更により、他のプロセス内でブロックされている semop(2)  コールの続行が
              許可されると、それらのプロセスは起こされる (wake up)。 semnum 引数は無視される。 呼
              び出したプロセスはそのセマフォ集合に 変更 (書き込み) 許可を持たなければならない。

       SETVAL 集合の semnum 番目のセマフォのセマフォ地 (semval) に arg.val の値を設定する。その集
              合に関連する  semid_ds 構造体の sem_ctime メンバーの値も更新する。 全てのプロセスの
              セマフォの変更についてのアンドゥエントリーは消去される。     セマフォの値の変更によ
              り、他のプロセス内でブロックされている semop(2)  コールの続行が許可されると、それら
              のプロセスは起こされる (wake up)。 呼び出したプロセスはそのセマフォ集合に 変更  (書
              き込み) 許可を持たなければならない。

返り値

       失敗した場合、 semctl()  は -1 を返し、 errno にそのエラーを示す。

       そうでなければシステムコールは cmd によって以下の負でない値を返す:

       GETNCNT
              semncnt の値

       GETPID sempid の値

       GETVAL semval の値

       GETZCNT
              semzcnt の値

       IPC_INFO
              全てのセマフォ集合に関する情報を管理しているカーネルの内部配列の使用中 エントリーの
              インデックスの最大値  (この情報は、システムの全てのセマフォ集合に関する情報を取得す
              るために操作 SEM_STATSEM_STAT_ANY を繰り返し実行する際に使用できる)

       SEM_INFO
              IPC_INFO と同じ

       SEM_STAT
              semid で指定されたインデックスを持つセマフォ集合の識別子

       SEM_STAT_ANY
              SEM_STAT と同じ。

       cmd の値がそれ以外の場合、成功すると 0 が返される。

エラー

       失敗した場合は errno には以下の値のどれかが設定される:

       EACCES The  argument  cmd  has one of the values GETALL, GETPID, GETVAL, GETNCNT, GETZCNT,
              IPC_STAT, SEM_STAT, SEM_STAT_ANY, SETALL, or SETVAL and the  calling  process  does
              not  have  the  required  permissions  on  the  semaphore set and does not have the
              CAP_IPC_OWNER capability in the user namespace that governs its IPC namespace.

       EFAULT arg.buf または arg.array で指されているアドレスにアクセスすることができない。

       EIDRM  セマフォ集合が削除された。

       EINVAL cmd または semid に無効な値が指定された。 もしくは、 SEM_STAT 操作の場合に、  semid
              で指定されたインデックス値が現在未使用の配列のスロットを参照いていた。

       EPERM  cmd  引数に IPC_SET または IPC_RMID が指定され、呼び出したプロセスの実効ユーザー ID
              がセマフォの (sem_perm.cuid で見つかる) 作成者または (sem_perm.uid で見つかる) 所有
              者でもなく、 プロセスが CAP_SYS_ADMIN ケーパビリティを持たない。

       ERANGE cmd 引数に SETALL または SETVAL が指定され、(集合のセマフォのどれかの)  semval に設
              定される値が 0 より小さいか、実装の制限 SEMVMX よりも大きい。

準拠

       POSIX.1-2001, POSIX.1-2008, SVr4.

       POSIX.1 では semid_ds 構造体の sem_nsems フィールドは unsigned short  型を持つと規定されて
       おり、  他のほとんどのシステムでこのフィールドは unsigned short 型になっている。 Linux 2.4
       以前ではそうなっていたが、 Linux 2.4 以降ではこのフィールドは unsigned long 型である。

注意

       Linux や POSIX の全てのバージョンでは、 <sys/types.h><sys/ipc.h>  のインクルードは必要
       ない。しかしながら、いくつかの古い実装ではこれらのヘッダーファイルのインクルードが必要であ
       り、 SVID でもこれらのインクルードをするように記載されている。このような古いシステムへの移
       植性を意図したアプリケーションではこれらのファイルをインクルードする必要があるかもしれな
       い。

       IPC_INFO, SEM_STAT, SEM_INFO 操作は ipcs(1) プログラムによって割当られた資源について情報を
       提供するために使用される。 将来的にはこれらは変更されるか、 /proc ファイルシステムインター
       フェースに移動されるかもしれない。

       構造体 semid_ds 内の多くのフィールドは、 Linux 2.2 では short 型だったが、Linux  2.4  では
       long 型になった。 この利点を生かすには、glibc-2.1.91 以降の環境下で 再コンパイルすれば十分
       である。 カーネルは新しい形式の呼び出しと古い形式の呼び出しを cmd 内の IPC_64 フラグで区別
       する。

       初期のバージョンの glibc では、 semun 共用体は <sys/sem.h> で定義されていたが、 POSIX.1 で
       は呼び出し側がこの共用体を定義する必要がある。 この共用体が定義されていない  glibc  のバー
       ジョンでは、 マクロ _SEM_SEMUN_UNDEFINED<sys/sem.h> で定義されている。

       以下は semctl()  コールに影響するセマフォ集合のシステム制限:

       SEMVMX semval の最大値 : 実装依存 (32767)。

       移植性を高めるための一番良い方法は、常に 4 個の引数で semctl()  を呼び出すことである。

   The sempid value
       POSIX.1  defines  sempid  as  the "process ID of [the] last operation" on a semaphore, and
       explicitly notes that this  value  is  set  by  a  successful  semop(2)   call,  with  the
       implication that no other interface affects the sempid value.

       While  some  implementations  conform to the behavior specified in POSIX.1, others do not.
       (The fault here probably lies with POSIX.1 inasmuch as it likely  failed  to  capture  the
       full  range  of  existing  implementation  behaviors.)  Various other implementations also
       update sempid for the other operations that update the value of a  semaphore:  the  SETVAL
       and  SETALL  operations,  as  well  as  the  semaphore  adjustments  performed  on process
       termination as a consequence of the use of the SEM_UNDO flag (see semop(2)).

       Linux also updates sempid for  SETVAL  operations  and  semaphore  adjustments.   However,
       somewhat  inconsistently,  up to and including Linux 4.5, the kernel did not update sempid
       for SETALL operations.  This was rectified in Linux 4.6.

       shmop(2) 参照。

関連項目

       ipc(2), semget(2), semop(2), capabilities(7), sem_overview(7), sysvipc(7)

この文書について

       この man ページは Linux man-pages プロジェクトのリリース 5.10 の一部である。プロジェクトの
       説明とバグ報告に関する情報は https://www.kernel.org/doc/man-pages/ に書かれている。