/
githubmirror
/
libuser
Обзор
Документация
Войти
/
githubmirror
/
libuser
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
apps/lgroupadd.c
144 строки
4 KB
Tomas Halman
Correct popt memory handling
26 сен 2022, 18:20
26 сен 2022, 18:20
3e70bc2
Код
Авторство
О чём код?
/* * Copyright (C) 2000-2002, 2004 Red Hat, Inc. * * This is free software; you can redistribute it and/or modify it under * the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include <config.h> #include <errno.h> #include <inttypes.h> #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <libintl.h> #include <locale.h> #include <popt.h> #include <string.h> #include "../lib/user_private.h" #include "apputil.h" int main(int argc, const char **argv) { const char *name, *gid_number_str = NULL; gid_t gidNumber = LU_VALUE_INVALID_ID; struct lu_context *ctx = NULL; struct lu_ent *ent = NULL; struct lu_error *error = NULL; int interactive = FALSE; int system_account = FALSE; int c; int result; poptContext popt; struct poptOption options[] = { {"interactive", 'i', POPT_ARG_NONE, &interactive, 0, N_("prompt for all information"), NULL}, {"gid", 'g', POPT_ARG_STRING, &gid_number_str, 0, N_("gid for new group"), N_("NUM")}, {"reserved", 'r', POPT_ARG_NONE, &system_account, 0, N_("create a system group"), NULL}, POPT_AUTOHELP POPT_TABLEEND }; /* Set up i18n. */ bindtextdomain(PACKAGE, LOCALEDIR); textdomain(PACKAGE); setlocale(LC_ALL, ""); /* Parse arguments. */ popt = poptGetContext("lgroupadd", argc, argv, options, 0); poptSetOtherOptionHelp(popt, _("[OPTION...] group")); c = poptGetNextOpt(popt); if (c != -1) { fprintf(stderr, _("Error parsing arguments: %s.\n"), poptStrerror(c)); poptPrintUsage(popt, stderr, 0); result = 1; goto done; } name = poptGetArg(popt); /* We require a group name to be specified. */ if (name == NULL) { fprintf(stderr, _("No group name specified.\n")); poptPrintUsage(popt, stderr, 0); result = 1; goto done; } if (gid_number_str != NULL) { intmax_t val; char *p; errno = 0; val = strtoimax(gid_number_str, &p, 10); if (errno != 0 || *p != 0 || p == gid_number_str || (gid_t)val != val || (gid_t)val == LU_VALUE_INVALID_ID) { fprintf(stderr, _("Invalid group ID %s\n"), gid_number_str); poptPrintUsage(popt, stderr, 0); result = 1; goto done; } gidNumber = val; } /* Start up the library. */ ctx = lu_start(NULL, 0, NULL, NULL, interactive ? lu_prompt_console : lu_prompt_console_quiet, NULL, &error); if (ctx == NULL) { fprintf(stderr, _("Error initializing %s: %s.\n"), PACKAGE, lu_strerror(error)); result = 1; goto done; } /* Create a group entity object holding sensible defaults for a * new group. */ ent = lu_ent_new(); lu_group_default(ctx, name, system_account, ent); /* If the user specified a particular GID number, override the * default. */ if (gidNumber != LU_VALUE_INVALID_ID) lu_ent_set_id(ent, LU_GIDNUMBER, gidNumber); /* Try to create the group. */ if (lu_group_add(ctx, ent, &error) == FALSE) { fprintf(stderr, _("Group creation failed: %s\n"), lu_strerror(error)); lu_audit_logger(AUDIT_ADD_GROUP, "add-group", name, AUDIT_NO_ID, 0); result = 2; goto done; } lu_nscd_flush_cache(LU_NSCD_CACHE_GROUP); lu_audit_logger(AUDIT_ADD_GROUP, "add-group", name, AUDIT_NO_ID, 1); result = 0; done: if (ent) lu_ent_free(ent); if (ctx) lu_end(ctx); poptFreeContext(popt); return result; }