Blame view

ipc/util.h 6.41 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
  /*
   * linux/ipc/util.h
   * Copyright (C) 1999 Christoph Rohland
   *
624dffcbc   Christian Kujau   correct email add...
5
   * ipc helper functions (c) 1999 Manfred Spraul <manfred@colorfullife.com>
73ea41302   Kirill Korotaev   [PATCH] IPC names...
6
7
   * namespaces support.      2006 OpenVZ, SWsoft Inc.
   *                               Pavel Emelianov <xemul@openvz.org>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
8
9
10
11
   */
  
  #ifndef _IPC_UTIL_H
  #define _IPC_UTIL_H
232086b19   Johannes Weiner   ipc: unbreak 32-b...
12
  #include <linux/unistd.h>
023a53557   Nadia Derbey   ipc: integrate ip...
13
  #include <linux/err.h>
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
14

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
15
  #define SEQ_MULTIPLIER	(IPCMNI)
239521f31   Manfred Spraul   ipc: whitespace c...
16
17
18
  void sem_init(void);
  void msg_init(void);
  void shm_init(void);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
19

ae5e1b22f   Pavel Emelyanov   namespaces: move ...
20
  struct ipc_namespace;
614b84cf4   Serge E. Hallyn   namespaces: mqueu...
21
  #ifdef CONFIG_POSIX_MQUEUE
7eafd7c74   Serge E. Hallyn   namespaces: ipc n...
22
23
  extern void mq_clear_sbinfo(struct ipc_namespace *ns);
  extern void mq_put_mnt(struct ipc_namespace *ns);
614b84cf4   Serge E. Hallyn   namespaces: mqueu...
24
  #else
7eafd7c74   Serge E. Hallyn   namespaces: ipc n...
25
26
  static inline void mq_clear_sbinfo(struct ipc_namespace *ns) { }
  static inline void mq_put_mnt(struct ipc_namespace *ns) { }
614b84cf4   Serge E. Hallyn   namespaces: mqueu...
27
28
29
  #endif
  
  #ifdef CONFIG_SYSVIPC
ed2ddbf88   Pierre Peiffer   IPC: make struct ...
30
31
32
  void sem_init_ns(struct ipc_namespace *ns);
  void msg_init_ns(struct ipc_namespace *ns);
  void shm_init_ns(struct ipc_namespace *ns);
73ea41302   Kirill Korotaev   [PATCH] IPC names...
33
34
35
36
  
  void sem_exit_ns(struct ipc_namespace *ns);
  void msg_exit_ns(struct ipc_namespace *ns);
  void shm_exit_ns(struct ipc_namespace *ns);
614b84cf4   Serge E. Hallyn   namespaces: mqueu...
37
38
39
40
41
42
43
44
45
  #else
  static inline void sem_init_ns(struct ipc_namespace *ns) { }
  static inline void msg_init_ns(struct ipc_namespace *ns) { }
  static inline void shm_init_ns(struct ipc_namespace *ns) { }
  
  static inline void sem_exit_ns(struct ipc_namespace *ns) { }
  static inline void msg_exit_ns(struct ipc_namespace *ns) { }
  static inline void shm_exit_ns(struct ipc_namespace *ns) { }
  #endif
73ea41302   Kirill Korotaev   [PATCH] IPC names...
46

53dad6d3a   Davidlohr Bueso   ipc: fix race wit...
47
48
49
50
51
52
  struct ipc_rcu {
  	struct rcu_head rcu;
  	atomic_t refcount;
  } ____cacheline_aligned_in_smp;
  
  #define ipc_rcu_to_struct(p)  ((void *)(p+1))
7748dbfaa   Nadia Derbey   ipc: unify the sy...
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
  /*
   * Structure that holds the parameters needed by the ipc operations
   * (see after)
   */
  struct ipc_params {
  	key_t key;
  	int flg;
  	union {
  		size_t size;	/* for shared memories */
  		int nsems;	/* for semaphores */
  	} u;			/* holds the getnew() specific param */
  };
  
  /*
   * Structure that holds some ipc operations. This structure is used to unify
   * the calls to sys_msgget(), sys_semget(), sys_shmget()
   *      . routine to call to create a new ipc object. Can be one of newque,
   *        newary, newseg
f4566f048   Nadia Derbey   ipc: fix wrong co...
71
   *      . routine to call to check permissions for a new ipc object.
7748dbfaa   Nadia Derbey   ipc: unify the sy...
72
73
74
75
76
   *        Can be one of security_msg_associate, security_sem_associate,
   *        security_shm_associate
   *      . routine to call for an extra check if needed
   */
  struct ipc_ops {
46c0a8ca3   Paul McQuade   ipc, kernel: clea...
77
78
79
  	int (*getnew)(struct ipc_namespace *, struct ipc_params *);
  	int (*associate)(struct kern_ipc_perm *, int);
  	int (*more_checks)(struct kern_ipc_perm *, struct ipc_params *);
7748dbfaa   Nadia Derbey   ipc: unify the sy...
80
  };
ae7817745   Mike Waychison   [PATCH] ipc: add ...
81
  struct seq_file;
ed2ddbf88   Pierre Peiffer   IPC: make struct ...
82
  struct ipc_ids;
7d69a1f4a   Cedric Le Goater   remove CONFIG_UTS...
83

7ca7e564e   Nadia Derbey   ipc: store ipcs i...
84
  void ipc_init_ids(struct ipc_ids *);
ae7817745   Mike Waychison   [PATCH] ipc: add ...
85
86
  #ifdef CONFIG_PROC_FS
  void __init ipc_init_proc_interface(const char *path, const char *header,
73ea41302   Kirill Korotaev   [PATCH] IPC names...
87
  		int ids, int (*show)(struct seq_file *, void *));
ae7817745   Mike Waychison   [PATCH] ipc: add ...
88
89
90
  #else
  #define ipc_init_proc_interface(path, header, ids, show) do {} while (0)
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
91

73ea41302   Kirill Korotaev   [PATCH] IPC names...
92
93
94
  #define IPC_SEM_IDS	0
  #define IPC_MSG_IDS	1
  #define IPC_SHM_IDS	2
ce621f5ba   Nadia Derbey   ipc: introduce th...
95
  #define ipcid_to_idx(id) ((id) % SEQ_MULTIPLIER)
03f595668   Stanislav Kinsbursky   ipc: add sysctl t...
96
  #define ipcid_to_seqx(id) ((id) / SEQ_MULTIPLIER)
daf948c7d   Davidlohr Bueso   ipc: delete seq_m...
97
  #define IPCID_SEQ_MAX min_t(int, INT_MAX/SEQ_MULTIPLIER, USHRT_MAX)
ce621f5ba   Nadia Derbey   ipc: introduce th...
98

d9a605e40   Davidlohr Bueso   ipc: rename ids->...
99
  /* must be called with ids->rwsem acquired for writing */
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
100
  int ipc_addid(struct ipc_ids *, struct kern_ipc_perm *, int);
3e148c799   Nadia Derbey   fix idr_find() lo...
101

d9a605e40   Davidlohr Bueso   ipc: rename ids->...
102
  /* must be called with ids->rwsem acquired for reading */
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
103
  int ipc_get_maxid(struct ipc_ids *);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
104
105
  
  /* must be called with both locks acquired. */
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
106
  void ipc_rmid(struct ipc_ids *, struct kern_ipc_perm *);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
107

f4566f048   Nadia Derbey   ipc: fix wrong co...
108
  /* must be called with ipcp locked */
b0e77598f   Serge E. Hallyn   userns: user name...
109
  int ipcperms(struct ipc_namespace *ns, struct kern_ipc_perm *ipcp, short flg);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
110
111
112
113
  
  /* for rare, potentially huge allocations.
   * both function can sleep
   */
239521f31   Manfred Spraul   ipc: whitespace c...
114
  void *ipc_alloc(int size);
1d5cfdb07   Tetsuo Handa   tree wide: use kv...
115
  void ipc_free(void *ptr);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
116
117
118
119
120
121
122
  
  /*
   * For allocation that need to be freed by RCU.
   * Objects are reference counted, they start with reference count 1.
   * getref increases the refcount, the putref call that reduces the recount
   * to 0 schedules the rcu destruction. Caller must guarantee locking.
   */
239521f31   Manfred Spraul   ipc: whitespace c...
123
  void *ipc_rcu_alloc(int size);
6062a8dc0   Rik van Riel   ipc,sem: fine gra...
124
  int ipc_rcu_getref(void *ptr);
53dad6d3a   Davidlohr Bueso   ipc: fix race wit...
125
126
  void ipc_rcu_putref(void *ptr, void (*func)(struct rcu_head *head));
  void ipc_rcu_free(struct rcu_head *head);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
127

023a53557   Nadia Derbey   ipc: integrate ip...
128
  struct kern_ipc_perm *ipc_lock(struct ipc_ids *, int);
55b7ae501   Davidlohr Bueso   ipc: rename ipc_o...
129
  struct kern_ipc_perm *ipc_obtain_object_idr(struct ipc_ids *ids, int id);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
130
131
132
  
  void kernel_to_ipc64_perm(struct kern_ipc_perm *in, struct ipc64_perm *out);
  void ipc64_perm_to_ipc_perm(struct ipc64_perm *in, struct ipc_perm *out);
1efdb69b0   Eric W. Biederman   userns: Convert i...
133
  int ipc_update_perm(struct ipc64_perm *in, struct kern_ipc_perm *out);
444d0f621   Davidlohr Bueso   ipc: introduce lo...
134
135
136
  struct kern_ipc_perm *ipcctl_pre_down_nolock(struct ipc_namespace *ns,
  					     struct ipc_ids *ids, int id, int cmd,
  					     struct ipc64_perm *perm, int extra_perm);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
137

c1d7e01d7   Will Deacon   ipc: use Kconfig ...
138
  #ifndef CONFIG_ARCH_WANT_IPC_PARSE_VERSION
46c0a8ca3   Paul McQuade   ipc, kernel: clea...
139
  /* On IA-64, we always use the "64-bit version" of the IPC structures.  */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
140
141
  # define ipc_parse_version(cmd)	IPC_64
  #else
239521f31   Manfred Spraul   ipc: whitespace c...
142
  int ipc_parse_version(int *cmd);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
143
144
145
  #endif
  
  extern void free_msg(struct msg_msg *msg);
4e9b45a19   Mathias Krause   ipc, msg: fix mes...
146
  extern struct msg_msg *load_msg(const void __user *src, size_t len);
4a674f34b   Stanislav Kinsbursky   ipc: introduce me...
147
  extern struct msg_msg *copy_msg(struct msg_msg *src, struct msg_msg *dst);
4e9b45a19   Mathias Krause   ipc, msg: fix mes...
148
  extern int store_msg(void __user *dest, struct msg_msg *msg, size_t len);
7748dbfaa   Nadia Derbey   ipc: unify the sy...
149

b6b337ad1   Nadia Derbey   ipc: recompute ms...
150
  extern void recompute_msgmni(struct ipc_namespace *);
1b531f213   Nadia Derbey   ipc: remove unnee...
151
  static inline int ipc_buildid(int id, int seq)
280283131   Nadia Derbey   ipc: inline ipc_b...
152
153
154
  {
  	return SEQ_MULTIPLIER * seq + id;
  }
1b531f213   Nadia Derbey   ipc: remove unnee...
155
  static inline int ipc_checkid(struct kern_ipc_perm *ipcp, int uid)
023a53557   Nadia Derbey   ipc: integrate ip...
156
  {
7bb4deff6   Davidlohr Bueso   ipc: remove bogus...
157
  	return uid / SEQ_MULTIPLIER != ipcp->seq;
023a53557   Nadia Derbey   ipc: integrate ip...
158
  }
1ca7003ab   Davidlohr Bueso   ipc: introduce ip...
159
  static inline void ipc_lock_object(struct kern_ipc_perm *perm)
023a53557   Nadia Derbey   ipc: integrate ip...
160
  {
023a53557   Nadia Derbey   ipc: integrate ip...
161
162
  	spin_lock(&perm->lock);
  }
1ca7003ab   Davidlohr Bueso   ipc: introduce ip...
163
  static inline void ipc_unlock_object(struct kern_ipc_perm *perm)
023a53557   Nadia Derbey   ipc: integrate ip...
164
165
  {
  	spin_unlock(&perm->lock);
023a53557   Nadia Derbey   ipc: integrate ip...
166
  }
1ca7003ab   Davidlohr Bueso   ipc: introduce ip...
167
  static inline void ipc_assert_locked_object(struct kern_ipc_perm *perm)
16df3674e   Davidlohr Bueso   ipc,sem: do not h...
168
  {
1ca7003ab   Davidlohr Bueso   ipc: introduce ip...
169
170
  	assert_spin_locked(&perm->lock);
  }
1ca7003ab   Davidlohr Bueso   ipc: introduce ip...
171
172
  static inline void ipc_unlock(struct kern_ipc_perm *perm)
  {
cf9d5d78d   Davidlohr Bueso   ipc: close open c...
173
  	ipc_unlock_object(perm);
1ca7003ab   Davidlohr Bueso   ipc: introduce ip...
174
175
  	rcu_read_unlock();
  }
0f3d2b013   Rafael Aquini   ipc: introduce ip...
176
177
178
179
180
181
182
183
184
185
  /*
   * ipc_valid_object() - helper to sort out IPC_RMID races for codepaths
   * where the respective ipc_ids.rwsem is not being held down.
   * Checks whether the ipc object is still around or if it's gone already, as
   * ipc_rmid() may have already freed the ID while the ipc lock was spinning.
   * Needs to be called with kern_ipc_perm.lock held -- exception made for one
   * checkpoint case at sys_semtimedop() as noted in code commentary.
   */
  static inline bool ipc_valid_object(struct kern_ipc_perm *perm)
  {
72a8ff2f9   Rafael Aquini   ipc: change kern_...
186
  	return !perm->deleted;
0f3d2b013   Rafael Aquini   ipc: introduce ip...
187
  }
4d2bff5eb   Davidlohr Bueso   ipc: introduce ob...
188
  struct kern_ipc_perm *ipc_obtain_object_check(struct ipc_ids *ids, int id);
b2d75cddc   Pavel Emelyanov   ipc: uninline som...
189
  int ipcget(struct ipc_namespace *ns, struct ipc_ids *ids,
eb66ec44f   Mathias Krause   ipc: constify ipc...
190
  			const struct ipc_ops *ops, struct ipc_params *params);
665c7741f   Alexey Dobriyan   ipcns: move free_...
191
192
  void free_ipcs(struct ipc_namespace *ns, struct ipc_ids *ids,
  		void (*free)(struct ipc_namespace *, struct kern_ipc_perm *));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
193
  #endif