Blame view

include/linux/utsname.h 1.8 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  #ifndef _LINUX_UTSNAME_H
  #define _LINUX_UTSNAME_H
  
  #define __OLD_UTS_LEN 8
  
  struct oldold_utsname {
  	char sysname[9];
  	char nodename[9];
  	char release[9];
  	char version[9];
  	char machine[9];
  };
  
  #define __NEW_UTS_LEN 64
  
  struct old_utsname {
  	char sysname[65];
  	char nodename[65];
  	char release[65];
  	char version[65];
  	char machine[65];
  };
  
  struct new_utsname {
a7d932af0   Dan Smith   utsname.h: make n...
25
26
27
28
29
30
  	char sysname[__NEW_UTS_LEN + 1];
  	char nodename[__NEW_UTS_LEN + 1];
  	char release[__NEW_UTS_LEN + 1];
  	char version[__NEW_UTS_LEN + 1];
  	char machine[__NEW_UTS_LEN + 1];
  	char domainname[__NEW_UTS_LEN + 1];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
31
  };
b119f13f5   Cedric Le Goater   [PATCH] ipc: head...
32
33
34
35
36
  #ifdef __KERNEL__
  
  #include <linux/sched.h>
  #include <linux/kref.h>
  #include <linux/nsproxy.h>
58bfdd6de   Pavel Emelyanov   namespaces: move ...
37
  #include <linux/err.h>
b119f13f5   Cedric Le Goater   [PATCH] ipc: head...
38

59607db36   Serge E. Hallyn   userns: add a use...
39
40
  struct user_namespace;
  extern struct user_namespace init_user_ns;
4865ecf13   Serge E. Hallyn   [PATCH] namespace...
41
42
43
  struct uts_namespace {
  	struct kref kref;
  	struct new_utsname name;
59607db36   Serge E. Hallyn   userns: add a use...
44
  	struct user_namespace *user_ns;
4865ecf13   Serge E. Hallyn   [PATCH] namespace...
45
46
  };
  extern struct uts_namespace init_uts_ns;
58bfdd6de   Pavel Emelyanov   namespaces: move ...
47
  #ifdef CONFIG_UTS_NS
4865ecf13   Serge E. Hallyn   [PATCH] namespace...
48
49
50
51
  static inline void get_uts_ns(struct uts_namespace *ns)
  {
  	kref_get(&ns->kref);
  }
213dd266d   Eric W. Biederman   namespace: ensure...
52
  extern struct uts_namespace *copy_utsname(unsigned long flags,
bb96a6f50   Serge E. Hallyn   userns: allow set...
53
  					  struct task_struct *tsk);
4865ecf13   Serge E. Hallyn   [PATCH] namespace...
54
55
56
57
58
59
  extern void free_uts_ns(struct kref *kref);
  
  static inline void put_uts_ns(struct uts_namespace *ns)
  {
  	kref_put(&ns->kref, free_uts_ns);
  }
58bfdd6de   Pavel Emelyanov   namespaces: move ...
60
61
62
63
64
65
66
67
68
69
  #else
  static inline void get_uts_ns(struct uts_namespace *ns)
  {
  }
  
  static inline void put_uts_ns(struct uts_namespace *ns)
  {
  }
  
  static inline struct uts_namespace *copy_utsname(unsigned long flags,
bb96a6f50   Serge E. Hallyn   userns: allow set...
70
  						 struct task_struct *tsk)
58bfdd6de   Pavel Emelyanov   namespaces: move ...
71
72
73
  {
  	if (flags & CLONE_NEWUTS)
  		return ERR_PTR(-EINVAL);
bb96a6f50   Serge E. Hallyn   userns: allow set...
74
  	return tsk->nsproxy->uts_ns;
58bfdd6de   Pavel Emelyanov   namespaces: move ...
75
76
  }
  #endif
0bdd7aab7   Serge E. Hallyn   [PATCH] namespace...
77
78
  static inline struct new_utsname *utsname(void)
  {
4865ecf13   Serge E. Hallyn   [PATCH] namespace...
79
  	return &current->nsproxy->uts_ns->name;
0bdd7aab7   Serge E. Hallyn   [PATCH] namespace...
80
81
82
83
  }
  
  static inline struct new_utsname *init_utsname(void)
  {
4865ecf13   Serge E. Hallyn   [PATCH] namespace...
84
  	return &init_uts_ns.name;
0bdd7aab7   Serge E. Hallyn   [PATCH] namespace...
85
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
86
  extern struct rw_semaphore uts_sem;
b119f13f5   Cedric Le Goater   [PATCH] ipc: head...
87
88
89
90
  
  #endif /* __KERNEL__ */
  
  #endif /* _LINUX_UTSNAME_H */