]> git.ipfire.org Git - thirdparty/glibc.git/blame - login/programs/pt_chown.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / login / programs / pt_chown.c
CommitLineData
9b3c7c3c 1/* pt_chmod - helper program for `grantpt'.
b168057a 2 Copyright (C) 1998-2015 Free Software Foundation, Inc.
6591c335
UD
3 This file is part of the GNU C Library.
4 Contributed by C. Scott Ananian <cananian@alumni.princeton.edu>, 1998.
5
6 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
6591c335
UD
10
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 14 Lesser General Public License for more details.
6591c335 15
41bdb6e2 16 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
6591c335 19
9b3c7c3c 20#include <argp.h>
6591c335 21#include <errno.h>
9b3c7c3c 22#include <error.h>
6591c335 23#include <grp.h>
9b3c7c3c
UD
24#include <libintl.h>
25#include <locale.h>
26#include <stdio.h>
27#include <stdlib.h>
28#include <string.h>
29#include <sys/stat.h>
30#include <unistd.h>
f793b624
UD
31#ifdef HAVE_LIBCAP
32# include <sys/capability.h>
33# include <sys/prctl.h>
34#endif
9b3c7c3c
UD
35
36#include "pty-private.h"
6591c335 37
9b3c7c3c
UD
38/* Get libc version number. */
39#include "../version.h"
6591c335 40
9b3c7c3c
UD
41#define PACKAGE _libc_intl_domainname
42
43/* Name and version of program. */
44static void print_version (FILE *stream, struct argp_state *state);
45void (*argp_program_version_hook) (FILE *, struct argp_state *) = print_version;
46
47/* Function to print some extra text in the help message. */
48static char *more_help (int key, const char *text, void *input);
49
50/* Data structure to communicate with argp functions. */
51static struct argp argp =
6591c335 52{
9b3c7c3c
UD
53 NULL, NULL, NULL, NULL, NULL, more_help
54};
55
56
57/* Print the version information. */
58static void
59print_version (FILE *stream, struct argp_state *state)
60{
8b748aed 61 fprintf (stream, "pt_chown %s%s\n", PKGVERSION, VERSION);
9b3c7c3c
UD
62 fprintf (stream, gettext ("\
63Copyright (C) %s Free Software Foundation, Inc.\n\
64This is free software; see the source for copying conditions. There is NO\n\
65warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
88726d48 66"), "2014");
6591c335
UD
67}
68
9b3c7c3c
UD
69static char *
70more_help (int key, const char *text, void *input)
6591c335 71{
9b3c7c3c 72 char *cp;
8b748aed 73 char *tp;
00bc5db0 74
9b3c7c3c
UD
75 switch (key)
76 {
77 case ARGP_KEY_HELP_PRE_DOC:
78 asprintf (&cp, gettext ("\
00bc5db0
UD
79Set the owner, group and access permission of the slave pseudo\
80 terminal corresponding to the master pseudo terminal passed on\
81 file descriptor `%d'. This is the helper program for the\
82 `grantpt' function. It is not intended to be run directly from\
83 the command line.\n"),
9b3c7c3c
UD
84 PTY_FILENO);
85 return cp;
86 case ARGP_KEY_HELP_EXTRA:
87 /* We print some extra information. */
8b748aed
JM
88 if (asprintf (&tp, gettext ("\
89For bug reporting instructions, please see:\n\
90%s.\n"), REPORT_BUGS_TO) < 0)
91 return NULL;
92 if (asprintf (&cp, gettext ("\
9b3c7c3c
UD
93The owner is set to the current user, the group is set to `%s',\
94 and the access permission is set to `%o'.\n\n\
95%s"),
8b748aed
JM
96 TTY_GROUP, S_IRUSR|S_IWUSR|S_IWGRP, tp) < 0)
97 {
98 free (tp);
99 return NULL;
100 }
9b3c7c3c
UD
101 return cp;
102 default:
103 break;
104 }
105 return (char *) text;
6591c335
UD
106}
107
d54fb3b6 108static int
71e5d196 109do_pt_chown (void)
6591c335 110{
6591c335 111 char *pty;
f793b624 112 struct stat64 st;
9b3c7c3c 113 struct group *p;
6591c335 114 gid_t gid;
6591c335 115
9b3c7c3c
UD
116 /* Check that PTY_FILENO is a valid master pseudo terminal. */
117 pty = ptsname (PTY_FILENO);
6591c335
UD
118 if (pty == NULL)
119 return errno == EBADF ? FAIL_EBADF : FAIL_EINVAL;
6591c335 120
9b3c7c3c
UD
121 /* Check that the returned slave pseudo terminal is a
122 character device. */
f793b624 123 if (stat64 (pty, &st) < 0 || !S_ISCHR (st.st_mode))
6591c335
UD
124 return FAIL_EINVAL;
125
9b3c7c3c
UD
126 /* Get the group ID of the special `tty' group. */
127 p = getgrnam (TTY_GROUP);
128 gid = p ? p->gr_gid : getgid ();
129
130 /* Set the owner to the real user ID, and the group to that special
131 group ID. */
f3799213 132 if (chown (pty, getuid (), gid) < 0)
9b3c7c3c 133 return FAIL_EACCES;
6591c335 134
9b3c7c3c
UD
135 /* Set the permission mode to readable and writable by the owner,
136 and writable by the group. */
837dea7c
UD
137 if ((st.st_mode & ACCESSPERMS) != (S_IRUSR|S_IWUSR|S_IWGRP)
138 && chmod (pty, S_IRUSR|S_IWUSR|S_IWGRP) < 0)
6591c335
UD
139 return FAIL_EACCES;
140
71e5d196
UD
141 return 0;
142}
143
144
145int
146main (int argc, char *argv[])
147{
a0e0c6c5 148 uid_t euid = geteuid ();
f793b624 149 uid_t uid = getuid ();
71e5d196
UD
150 int remaining;
151
a0e0c6c5 152 if (argc == 1 && euid == 0)
f793b624
UD
153 {
154#ifdef HAVE_LIBCAP
155 /* Drop privileges. */
156 if (uid != euid)
157 {
158 static const cap_value_t cap_list[] =
159 { CAP_CHOWN, CAP_FOWNER };
160# define ncap_list (sizeof (cap_list) / sizeof (cap_list[0]))
161 cap_t caps = cap_init ();
162 if (caps == NULL)
139ee080 163 return FAIL_ENOMEM;
f793b624
UD
164
165 /* There is no reason why these should not work. */
166 cap_set_flag (caps, CAP_PERMITTED, ncap_list, cap_list, CAP_SET);
167 cap_set_flag (caps, CAP_EFFECTIVE, ncap_list, cap_list, CAP_SET);
168
169 int res = cap_set_proc (caps);
170
171 cap_free (caps);
172
a1ffb40e 173 if (__glibc_unlikely (res != 0))
139ee080 174 return FAIL_EXEC;
f793b624
UD
175 }
176#endif
177
178 /* Normal invocation of this program is with no arguments and
179 with privileges. */
180 return do_pt_chown ();
181 }
71e5d196
UD
182
183 /* We aren't going to be using privileges, so drop them right now. */
f793b624 184 setuid (uid);
a0e0c6c5 185
71e5d196
UD
186 /* Set locale via LC_ALL. */
187 setlocale (LC_ALL, "");
188
189 /* Set the text message domain. */
190 textdomain (PACKAGE);
191
192 /* parse and process arguments. */
193 argp_parse (&argp, argc, argv, 0, &remaining, NULL);
194
195 if (remaining < argc)
196 {
197 /* We should not be called with any non-option parameters. */
198 error (0, 0, gettext ("too many arguments"));
199 argp_help (&argp, stdout, ARGP_HELP_SEE | ARGP_HELP_EXIT_ERR,
200 program_invocation_short_name);
201 return EXIT_FAILURE;
202 }
203
204 /* Check if we are properly installed. */
a0e0c6c5 205 if (euid != 0)
71e5d196
UD
206 error (FAIL_EXEC, 0, gettext ("needs to be installed setuid `root'"));
207
208 return EXIT_SUCCESS;
6591c335 209}