]> git.ipfire.org Git - thirdparty/util-linux.git/blame - login-utils/chfn.c
mkswap: be more explicit about maximal number of pages
[thirdparty/util-linux.git] / login-utils / chfn.c
CommitLineData
6dbe3af9
KZ
1/*
2 * chfn.c -- change your finger information
3 * (c) 1994 by salvatore valente <svalente@athena.mit.edu>
8c24b6aa 4 * (c) 2012 by Cody Maloney <cmaloney@theoreticalchaos.com>
6dbe3af9
KZ
5 *
6 * this program is free software. you can redistribute it and
7 * modify it under the terms of the gnu general public license.
8 * there is no warranty.
9 *
fd6b7a7f 10 * $Author: aebr $
2b6fc908
KZ
11 * $Revision: 1.18 $
12 * $Date: 1998/06/11 22:30:11 $
726f69e2
KZ
13 *
14 * Updated Thu Oct 12 09:19:26 1995 by faith@cs.unc.edu with security
15 * patches from Zefram <A.Main@dcs.warwick.ac.uk>
6dbe3af9 16 *
7eda085c
KZ
17 * Hacked by Peter Breitenlohner, peb@mppmu.mpg.de,
18 * to remove trailing empty fields. Oct 5, 96.
19 *
b50945d4 20 * 1999-02-22 Arkadiusz Miƛkiewicz <misiek@pld.ORG.PL>
7eda085c 21 * - added Native Language Support
6dbe3af9
KZ
22 */
23
6dbe3af9 24#include <ctype.h>
3ca10299 25#include <errno.h>
6dbe3af9 26#include <getopt.h>
3ca10299 27#include <pwd.h>
8187b555 28#include <stdbool.h>
3ca10299
SK
29#include <stdio.h>
30#include <stdlib.h>
31#include <string.h>
32#include <sys/types.h>
33#include <unistd.h>
39941b4e 34
3ca10299
SK
35#include "c.h"
36#include "env.h"
439cdf1e 37#include "closestream.h"
66ee8158 38#include "islocal.h"
3ca10299 39#include "nls.h"
66ee8158 40#include "setpwnam.h"
8abcf290 41#include "strutils.h"
39941b4e 42#include "xalloc.h"
e88f0059 43#include "logindefs.h"
fd6b7a7f 44
144ae70e
SK
45#include "ch-common.h"
46
48d7b13a 47#ifdef HAVE_LIBSELINUX
3ca10299 48# include <selinux/selinux.h>
3ca10299 49# include "selinux_utils.h"
d03dd608
KZ
50#endif
51
8c24b6aa
CM
52#ifdef HAVE_LIBUSER
53# include <libuser/user.h>
54# include "libuser.h"
d86918b6 55#elif CHFN_CHSH_PASSWORD
8c24b6aa
CM
56# include "auth.h"
57#endif
58
e41ae450
SK
59#ifdef HAVE_LIBREADLINE
60# define _FUNCTION_DEF
61# include <readline/readline.h>
62#endif
63
6dbe3af9 64struct finfo {
3ca10299
SK
65 char *full_name;
66 char *office;
67 char *office_phone;
68 char *home_phone;
69 char *other;
6dbe3af9
KZ
70};
71
d5fdba03 72struct chfn_control {
5fe1c32f
SK
73 struct passwd *pw;
74 char *username;
75 /* "oldf" Contains the users original finger information.
76 * "newf" Contains the changed finger information, and contains
77 * NULL in fields that haven't been changed.
78 * In the end, "newf" is folded into "oldf". */
79 struct finfo oldf, newf;
d5fdba03 80 unsigned int
e88f0059
SK
81 allow_fullname:1, /* The login.defs restriction */
82 allow_room:1, /* see: man login.defs(5) */
83 allow_work:1, /* and look for CHFN_RESTRICT */
84 allow_home:1, /* keyword for these four. */
f723cbf5 85 changed:1, /* is change requested */
d5fdba03
SK
86 interactive:1; /* whether to prompt for fields or not */
87};
88
7eda085c 89/* we do not accept gecos field sizes longer than MAX_FIELD_SIZE */
5c36a0eb
KZ
90#define MAX_FIELD_SIZE 256
91
6e1eda6f 92static void __attribute__((__noreturn__)) usage(void)
39941b4e 93{
6e1eda6f 94 FILE *fp = stdout;
3ca10299 95 fputs(USAGE_HEADER, fp);
09af3db4 96 fprintf(fp, _(" %s [options] [<username>]\n"), program_invocation_short_name);
451dbcfa
BS
97
98 fputs(USAGE_SEPARATOR, fp);
99 fputs(_("Change your finger information.\n"), fp);
100
3ca10299
SK
101 fputs(USAGE_OPTIONS, fp);
102 fputs(_(" -f, --full-name <full-name> real name\n"), fp);
103 fputs(_(" -o, --office <office> office number\n"), fp);
104 fputs(_(" -p, --office-phone <phone> office phone number\n"), fp);
105 fputs(_(" -h, --home-phone <phone> home phone number\n"), fp);
106 fputs(USAGE_SEPARATOR, fp);
b3054454
RM
107 printf( " -u, --help %s\n", USAGE_OPTSTR_HELP);
108 printf( " -v, --version %s\n", USAGE_OPTSTR_VERSION);
f45f3ec3 109 printf(USAGE_MAN_TAIL("chfn(1)"));
6e1eda6f 110 exit(EXIT_SUCCESS);
39941b4e
MP
111}
112
24016335
SK
113/*
114 * check_gecos_string () --
115 * check that the given gecos string is legal. if it's not legal,
116 * output "msg" followed by a description of the problem, and return (-1).
117 */
5a57c00a 118static int check_gecos_string(const char *msg, char *gecos)
3ca10299 119{
5a57c00a 120 const size_t len = strlen(gecos);
3ca10299 121
5a57c00a
SK
122 if (MAX_FIELD_SIZE < len) {
123 warnx(_("field %s is too long"), msg);
24016335 124 return -1;
3ca10299 125 }
144ae70e
SK
126 if (illegal_passwd_chars(gecos)) {
127 warnx(_("%s: has illegal characters"), gecos);
128 return -1;
3ca10299 129 }
24016335 130 return 0;
6dbe3af9
KZ
131}
132
133/*
134 * parse_argv () --
135 * parse the command line arguments.
136 * returns true if no information beyond the username was given.
137 */
5fe1c32f 138static void parse_argv(struct chfn_control *ctl, int argc, char **argv)
6dbe3af9 139{
e4efecc4
SK
140 int index, c, status = 0;
141 static const struct option long_options[] = {
87918040
SK
142 { "full-name", required_argument, NULL, 'f' },
143 { "office", required_argument, NULL, 'o' },
144 { "office-phone", required_argument, NULL, 'p' },
145 { "home-phone", required_argument, NULL, 'h' },
146 { "help", no_argument, NULL, 'u' },
147 { "version", no_argument, NULL, 'v' },
148 { NULL, 0, NULL, 0 },
3ca10299
SK
149 };
150
e4efecc4
SK
151 while ((c = getopt_long(argc, argv, "f:r:p:h:o:uv", long_options,
152 &index)) != -1) {
3ca10299
SK
153 switch (c) {
154 case 'f':
e88f0059
SK
155 if (!ctl->allow_fullname)
156 errx(EXIT_FAILURE, _("login.defs forbids setting %s"), _("Name"));
5fe1c32f 157 ctl->newf.full_name = optarg;
e4efecc4 158 status += check_gecos_string(_("Name"), optarg);
3ca10299
SK
159 break;
160 case 'o':
e88f0059
SK
161 if (!ctl->allow_room)
162 errx(EXIT_FAILURE, _("login.defs forbids setting %s"), _("Office"));
5fe1c32f 163 ctl->newf.office = optarg;
e4efecc4 164 status += check_gecos_string(_("Office"), optarg);
3ca10299
SK
165 break;
166 case 'p':
e88f0059
SK
167 if (!ctl->allow_work)
168 errx(EXIT_FAILURE, _("login.defs forbids setting %s"), _("Office Phone"));
5fe1c32f 169 ctl->newf.office_phone = optarg;
e4efecc4 170 status += check_gecos_string(_("Office Phone"), optarg);
3ca10299
SK
171 break;
172 case 'h':
e88f0059
SK
173 if (!ctl->allow_home)
174 errx(EXIT_FAILURE, _("login.defs forbids setting %s"), _("Home Phone"));
5fe1c32f 175 ctl->newf.home_phone = optarg;
e4efecc4 176 status += check_gecos_string(_("Home Phone"), optarg);
3ca10299 177 break;
e4efecc4
SK
178 case 'v':
179 printf(UTIL_LINUX_VERSION);
180 exit(EXIT_SUCCESS);
181 case 'u':
6e1eda6f 182 usage();
3ca10299 183 default:
677ec86c 184 errtryhelp(EXIT_FAILURE);
3ca10299 185 }
f723cbf5 186 ctl->changed = 1;
e4efecc4 187 ctl->interactive = 0;
6dbe3af9 188 }
e4efecc4
SK
189 if (status != 0)
190 exit(EXIT_FAILURE);
3ca10299
SK
191 /* done parsing arguments. check for a username. */
192 if (optind < argc) {
6e1eda6f
RM
193 if (optind + 1 < argc) {
194 warnx(_("cannot handle multiple usernames"));
195 errtryhelp(EXIT_FAILURE);
196 }
5fe1c32f 197 ctl->username = argv[optind];
6dbe3af9 198 }
d5fdba03 199 return;
6dbe3af9
KZ
200}
201
6dbe3af9
KZ
202/*
203 * parse_passwd () --
3ca10299 204 * take a struct password and fill in the fields of the struct finfo.
6dbe3af9 205 */
5fe1c32f 206static void parse_passwd(struct chfn_control *ctl)
6dbe3af9 207{
3ca10299 208 char *gecos;
58985f67 209
5fe1c32f 210 if (!ctl->pw)
58985f67 211 return;
58985f67 212 /* use pw_gecos - we take a copy since PAM destroys the original */
5fe1c32f 213 gecos = xstrdup(ctl->pw->pw_gecos);
58985f67 214 /* extract known fields */
5fe1c32f
SK
215 ctl->oldf.full_name = strsep(&gecos, ",");
216 ctl->oldf.office = strsep(&gecos, ",");
217 ctl->oldf.office_phone = strsep(&gecos, ",");
218 ctl->oldf.home_phone = strsep(&gecos, ",");
58985f67
SK
219 /* extra fields contain site-specific information, and can
220 * not be changed by this version of chfn. */
5fe1c32f 221 ctl->oldf.other = strsep(&gecos, ",");
6dbe3af9
KZ
222}
223
6dbe3af9 224/*
d9e1ac99 225 * ask_new_field () --
6dbe3af9
KZ
226 * ask the user for a given field and check that the string is legal.
227 */
d9e1ac99
SK
228static char *ask_new_field(struct chfn_control *ctl, const char *question,
229 char *def_val)
6dbe3af9 230{
3ca10299 231 int len;
e41ae450
SK
232 char *buf;
233#ifndef HAVE_LIBREADLINE
234 size_t dummy = 0;
235#endif
3ca10299 236
5a57c00a
SK
237 if (!def_val)
238 def_val = "";
3ca10299 239 while (true) {
3ca10299 240 printf("%s [%s]: ", question, def_val);
5a57c00a 241 __fpurge(stdin);
e41ae450 242#ifdef HAVE_LIBREADLINE
36b60841 243 rl_bind_key('\t', rl_insert);
e41ae450
SK
244 if ((buf = readline(NULL)) == NULL)
245#else
246 if (getline(&buf, &dummy, stdin) < 0)
247#endif
3ca10299 248 errx(EXIT_FAILURE, _("Aborted."));
5a57c00a 249 /* remove white spaces from string end */
e41ae450
SK
250 ltrim_whitespace((unsigned char *) buf);
251 len = rtrim_whitespace((unsigned char *) buf);
252 if (len == 0) {
253 free(buf);
f723cbf5 254 return xstrdup(def_val);
e41ae450
SK
255 }
256 if (!strcasecmp(buf, "none")) {
257 free(buf);
f723cbf5
SK
258 ctl->changed = 1;
259 return xstrdup("");
260 }
e41ae450 261 if (check_gecos_string(question, buf) >= 0)
3ca10299
SK
262 break;
263 }
f723cbf5 264 ctl->changed = 1;
e41ae450 265 return buf;
6dbe3af9
KZ
266}
267
e88f0059
SK
268/*
269 * get_login_defs()
270 * find /etc/login.defs CHFN_RESTRICT and save restrictions to run time
271 */
272static void get_login_defs(struct chfn_control *ctl)
273{
274 const char *s;
275 size_t i;
276 int broken = 0;
277
278 /* real root does not have restrictions */
279 if (geteuid() == getuid() && getuid() == 0) {
280 ctl->allow_fullname = ctl->allow_room = ctl->allow_work = ctl->allow_home = 1;
281 return;
282 }
283 s = getlogindefs_str("CHFN_RESTRICT", "");
284 if (!strcmp(s, "yes")) {
285 ctl->allow_room = ctl->allow_work = ctl->allow_home = 1;
286 return;
287 }
288 if (!strcmp(s, "no")) {
289 ctl->allow_fullname = ctl->allow_room = ctl->allow_work = ctl->allow_home = 1;
290 return;
291 }
292 for (i = 0; s[i]; i++) {
293 switch (s[i]) {
294 case 'f':
295 ctl->allow_fullname = 1;
296 break;
297 case 'r':
298 ctl->allow_room = 1;
299 break;
300 case 'w':
301 ctl->allow_work = 1;
302 break;
303 case 'h':
304 ctl->allow_home = 1;
305 break;
306 default:
307 broken = 1;
308 }
309 }
310 if (broken)
311 warnx(_("%s: CHFN_RESTRICT has unexpected value: %s"), _PATH_LOGINDEFS, s);
312 if (!ctl->allow_fullname && !ctl->allow_room && !ctl->allow_work && !ctl->allow_home)
313 errx(EXIT_FAILURE, _("%s: CHFN_RESTRICT does not allow any changes"), _PATH_LOGINDEFS);
314 return;
315}
316
6dbe3af9 317/*
24016335
SK
318 * ask_info () --
319 * prompt the user for the finger information and store it.
6dbe3af9 320 */
5fe1c32f 321static void ask_info(struct chfn_control *ctl)
6dbe3af9 322{
e88f0059
SK
323 if (ctl->allow_fullname)
324 ctl->newf.full_name = ask_new_field(ctl, _("Name"), ctl->oldf.full_name);
325 if (ctl->allow_room)
326 ctl->newf.office = ask_new_field(ctl, _("Office"), ctl->oldf.office);
327 if (ctl->allow_work)
328 ctl->newf.office_phone = ask_new_field(ctl, _("Office Phone"), ctl->oldf.office_phone);
329 if (ctl->allow_home)
330 ctl->newf.home_phone = ask_new_field(ctl, _("Home Phone"), ctl->oldf.home_phone);
331 putchar('\n');
6dbe3af9
KZ
332}
333
334/*
f723cbf5
SK
335 * find_field () --
336 * find field value in uninteractive mode; can be new, old, or blank
6dbe3af9 337 */
f723cbf5 338static char *find_field(char *nf, char *of)
6dbe3af9 339{
f723cbf5
SK
340 if (nf)
341 return nf;
342 if (of)
343 return of;
344 return xstrdup("");
345}
3ca10299 346
f723cbf5
SK
347/*
348 * add_missing () --
349 * add not supplied field values when in uninteractive mode
350 */
351static void add_missing(struct chfn_control *ctl)
352{
353 ctl->newf.full_name = find_field(ctl->newf.full_name, ctl->oldf.full_name);
354 ctl->newf.office = find_field(ctl->newf.office, ctl->oldf.office);
355 ctl->newf.office_phone = find_field(ctl->newf.office_phone, ctl->oldf.office_phone);
356 ctl->newf.home_phone = find_field(ctl->newf.home_phone, ctl->oldf.home_phone);
357 ctl->newf.other = find_field(ctl->newf.other, ctl->oldf.other);
358 printf("\n");
6dbe3af9
KZ
359}
360
361/*
362 * save_new_data () --
363 * save the given finger info in /etc/passwd.
364 * return zero on success.
365 */
5fe1c32f 366static int save_new_data(struct chfn_control *ctl)
6dbe3af9 367{
3ca10299
SK
368 char *gecos;
369 int len;
370
3ca10299 371 /* create the new gecos string */
f723cbf5
SK
372 len = xasprintf(&gecos, "%s,%s,%s,%s,%s",
373 ctl->newf.full_name,
374 ctl->newf.office,
375 ctl->newf.office_phone,
376 ctl->newf.home_phone,
377 ctl->newf.other);
3ca10299 378
5fe1c32f 379 /* remove trailing empty fields (but not subfields of ctl->newf.other) */
f723cbf5 380 if (!ctl->newf.other) {
3ca10299
SK
381 while (len > 0 && gecos[len - 1] == ',')
382 len--;
383 gecos[len] = 0;
384 }
385
8c24b6aa 386#ifdef HAVE_LIBUSER
5fe1c32f 387 if (set_value_libuser("chfn", ctl->username, ctl->pw->pw_uid,
d86918b6 388 LU_GECOS, gecos) < 0) {
8c24b6aa 389#else /* HAVE_LIBUSER */
3ca10299 390 /* write the new struct passwd to the passwd file. */
5fe1c32f 391 ctl->pw->pw_gecos = gecos;
bde91c85 392 if (setpwnam(ctl->pw, ".chfn") < 0) {
d86918b6 393 warn("setpwnam failed");
8c24b6aa 394#endif
3ca10299
SK
395 printf(_
396 ("Finger information *NOT* changed. Try again later.\n"));
397 return -1;
398 }
1b7a19eb 399 free(gecos);
3ca10299
SK
400 printf(_("Finger information changed.\n"));
401 return 0;
6dbe3af9 402}
24016335
SK
403
404int main(int argc, char **argv)
405{
406 uid_t uid;
d5fdba03
SK
407 struct chfn_control ctl = {
408 .interactive = 1
409 };
24016335
SK
410
411 sanitize_env();
412 setlocale(LC_ALL, ""); /* both for messages and for iscntrl() below */
413 bindtextdomain(PACKAGE, LOCALEDIR);
414 textdomain(PACKAGE);
415 atexit(close_stdout);
24016335 416 uid = getuid();
24016335 417
e88f0059
SK
418 /* check /etc/login.defs CHFN_RESTRICT */
419 get_login_defs(&ctl);
420
5fe1c32f
SK
421 parse_argv(&ctl, argc, argv);
422 if (!ctl.username) {
423 ctl.pw = getpwuid(uid);
424 if (!ctl.pw)
24016335
SK
425 errx(EXIT_FAILURE, _("you (user %d) don't exist."),
426 uid);
5fe1c32f 427 ctl.username = ctl.pw->pw_name;
24016335 428 } else {
5fe1c32f
SK
429 ctl.pw = getpwnam(ctl.username);
430 if (!ctl.pw)
24016335 431 errx(EXIT_FAILURE, _("user \"%s\" does not exist."),
5fe1c32f 432 ctl.username);
24016335 433 }
5fe1c32f 434 parse_passwd(&ctl);
24016335 435#ifndef HAVE_LIBUSER
5fe1c32f 436 if (!(is_local(ctl.username)))
24016335
SK
437 errx(EXIT_FAILURE, _("can only change local entries"));
438#endif
439
440#ifdef HAVE_LIBSELINUX
441 if (is_selinux_enabled() > 0) {
442 if (uid == 0) {
dd5ef107
KZ
443 access_vector_t av = get_access_vector("passwd", "chfn");
444
445 if (selinux_check_passwd_access(av) != 0) {
24016335
SK
446 security_context_t user_context;
447 if (getprevcon(&user_context) < 0)
448 user_context = NULL;
449 errx(EXIT_FAILURE,
450 _("%s is not authorized to change "
451 "the finger info of %s"),
452 user_context ? : _("Unknown user context"),
5fe1c32f 453 ctl.username);
24016335
SK
454 }
455 }
456 if (setupDefaultContext(_PATH_PASSWD))
457 errx(EXIT_FAILURE,
458 _("can't set default context for %s"), _PATH_PASSWD);
459 }
460#endif
461
462#ifdef HAVE_LIBUSER
463 /* If we're setuid and not really root, disallow the password change. */
5fe1c32f 464 if (geteuid() != getuid() && uid != ctl.pw->pw_uid) {
24016335 465#else
bf6c15ed 466 if (uid != 0 && uid != ctl.pw->pw_uid) {
24016335
SK
467#endif
468 errno = EACCES;
469 err(EXIT_FAILURE, _("running UID doesn't match UID of user we're "
470 "altering, change denied"));
471 }
472
5fe1c32f 473 printf(_("Changing finger information for %s.\n"), ctl.username);
24016335
SK
474
475#if !defined(HAVE_LIBUSER) && defined(CHFN_CHSH_PASSWORD)
5fe1c32f 476 if (!auth_pam("chfn", uid, ctl.username)) {
24016335
SK
477 return EXIT_FAILURE;
478 }
479#endif
480
d5fdba03 481 if (ctl.interactive)
5fe1c32f 482 ask_info(&ctl);
e88f0059
SK
483
484 add_missing(&ctl);
24016335 485
f723cbf5 486 if (!ctl.changed) {
24016335
SK
487 printf(_("Finger information not changed.\n"));
488 return EXIT_SUCCESS;
489 }
490
5fe1c32f 491 return save_new_data(&ctl) == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
24016335 492}