Lines Matching full:pid
19 * What is struct pid?
21 * A struct pid is the kernel's internal notion of a process identifier.
23 * there are processes attached to it the struct pid lives in a hash
25 * quickly from the numeric pid value. The attached processes may be
26 * quickly accessed by following pointers from struct pid.
29 * problem. The process originally with that pid may have exited and the
30 * pid allocator wrapped, and another process could have come along
31 * and been assigned that pid.
38 * a struct pid is about 64 bytes.
40 * Holding a reference to struct pid solves both of these problems.
42 * resources, and since a new struct pid is allocated when the numeric pid
49 * struct upid is used to get the id of the struct pid, as it is
50 * seen in particular namespace. Later the struct pid is found with
59 struct pid struct
64 /* lists of tasks that use this pid */ argument
73 extern struct pid init_struct_pid; argument
79 extern struct pid *pidfd_pid(const struct file *file);
80 struct pid *pidfd_get_pid(unsigned int fd, unsigned int *flags);
82 int pidfd_create(struct pid *pid, unsigned int flags);
84 static inline struct pid *get_pid(struct pid *pid) in get_pid() argument
86 if (pid) in get_pid()
87 refcount_inc(&pid->count); in get_pid()
88 return pid; in get_pid()
91 extern void put_pid(struct pid *pid);
92 extern struct task_struct *pid_task(struct pid *pid, enum pid_type);
93 static inline bool pid_has_task(struct pid *pid, enum pid_type type) in pid_has_task() argument
95 return !hlist_empty(&pid->tasks[type]); in pid_has_task()
97 extern struct task_struct *get_pid_task(struct pid *pid, enum pid_type);
99 extern struct pid *get_task_pid(struct task_struct *task, enum pid_type type);
107 struct pid *pid);
119 * look up a PID in the hash table. Must be called with the tasklist_lock
122 * find_pid_ns() finds the pid in the namespace specified
123 * find_vpid() finds the pid by its virtual id, i.e. in the current namespace
127 extern struct pid *find_pid_ns(int nr, struct pid_namespace *ns);
128 extern struct pid *find_vpid(int nr);
131 * Lookup a PID in the hash table, and return with it's count elevated.
133 extern struct pid *find_get_pid(int nr);
134 extern struct pid *find_ge_pid(int nr, struct pid_namespace *);
136 extern struct pid *alloc_pid(struct pid_namespace *ns, pid_t *set_tid,
138 extern void free_pid(struct pid *pid);
142 * ns_of_pid() returns the pid namespace in which the specified pid was
147 * an attached 'struct pid' (see attach_pid(), detach_pid()) i.e @pid
148 * is expected to be non-NULL. If @pid is NULL, caller should handle
149 * the resulting NULL pid-ns.
151 static inline struct pid_namespace *ns_of_pid(struct pid *pid) in ns_of_pid() argument
154 if (pid) in ns_of_pid()
155 ns = pid->numbers[pid->level].ns; in ns_of_pid()
160 * is_child_reaper returns true if the pid is the init process
163 * with the pid number.
165 static inline bool is_child_reaper(struct pid *pid) in is_child_reaper() argument
167 return pid->numbers[pid->level].nr == 1; in is_child_reaper()
171 * the helpers to get the pid's id seen from different namespaces
174 * pid_vnr() : virtual id, i.e. the id seen from the pid namespace of
181 static inline pid_t pid_nr(struct pid *pid) in pid_nr() argument
184 if (pid) in pid_nr()
185 nr = pid->numbers[0].nr; in pid_nr()
189 pid_t pid_nr_ns(struct pid *pid, struct pid_namespace *ns);
190 pid_t pid_vnr(struct pid *pid);
192 #define do_each_pid_task(pid, type, task) \ argument
194 if ((pid) != NULL) \
196 &(pid)->tasks[type], pid_links[type]) {
200 * the same pid in the middle of de_thread().
202 #define while_each_pid_task(pid, type, task) \ argument
208 #define do_each_pid_thread(pid, type, task) \ argument
209 do_each_pid_task(pid, type, task) { \
213 #define while_each_pid_thread(pid, type, task) \ argument
216 } while_each_pid_task(pid, type, task)