commit
5de122d336
@ -1,58 +0,0 @@
|
|||||||
From 1efff28faef83a620fd7f6eaac3fe64ee6691a33 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Jiri Kucera <jkucera@redhat.com>
|
|
||||||
Date: Apr 10 2020 09:18:42 +0000
|
|
||||||
Subject: Merge #7 `Do not use deprecated flask.h and av_permissions.h`
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
diff --git a/userhelper.c b/userhelper.c
|
|
||||||
index 4177c89..f2afde7 100644
|
|
||||||
--- a/userhelper.c
|
|
||||||
+++ b/userhelper.c
|
|
||||||
@@ -48,8 +48,6 @@
|
|
||||||
|
|
||||||
#ifdef WITH_SELINUX
|
|
||||||
#include <selinux/selinux.h>
|
|
||||||
-#include <selinux/flask.h>
|
|
||||||
-#include <selinux/av_permissions.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "shvar.h"
|
|
||||||
@@ -111,7 +109,7 @@ static int checkAccess(unsigned int selaccess) {
|
|
||||||
struct av_decision avd;
|
|
||||||
int retval = security_compute_av(user_context,
|
|
||||||
user_context,
|
|
||||||
- SECCLASS_PASSWD,
|
|
||||||
+ string_to_security_class("passwd"),
|
|
||||||
selaccess,
|
|
||||||
&avd);
|
|
||||||
|
|
||||||
@@ -2267,7 +2265,8 @@ main(int argc, char **argv)
|
|
||||||
const char *new_home_phone;
|
|
||||||
const char *new_shell;
|
|
||||||
#ifdef WITH_SELINUX
|
|
||||||
- unsigned perm;
|
|
||||||
+ security_class_t class;
|
|
||||||
+ access_vector_t perm;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* State variable we pass around. */
|
|
||||||
@@ -2426,12 +2425,13 @@ main(int argc, char **argv)
|
|
||||||
user_name = g_strdup(argv[optind]);
|
|
||||||
|
|
||||||
#ifdef WITH_SELINUX
|
|
||||||
+ class = string_to_security_class("passwd");
|
|
||||||
if (c_flag)
|
|
||||||
- perm = PASSWD__PASSWD;
|
|
||||||
+ perm = string_to_av_perm(class, "passwd");
|
|
||||||
else if (s_flag)
|
|
||||||
- perm = PASSWD__CHSH;
|
|
||||||
+ perm = string_to_av_perm(class, "chsh");
|
|
||||||
else
|
|
||||||
- perm = PASSWD__CHFN;
|
|
||||||
+ perm = string_to_av_perm(class, "chfn");
|
|
||||||
|
|
||||||
if (is_selinux_enabled() > 0 &&
|
|
||||||
checkAccess(perm)!= 0) {
|
|
||||||
|
|
||||||
Binary file not shown.
BIN
usermode-1.114.tar.xz
Normal file
BIN
usermode-1.114.tar.xz
Normal file
Binary file not shown.
@ -1,14 +1,12 @@
|
|||||||
Name: usermode
|
Name: usermode
|
||||||
Version: 1.113
|
Version: 1.114
|
||||||
Release: 4
|
Release: 1
|
||||||
Summary: Tools for certain user account management tasks
|
Summary: Tools for certain user account management tasks
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
URL: https://pagure.io/usermode/
|
URL: https://pagure.io/usermode/
|
||||||
Source: https://releases.pagure.org/usermode/usermode-%{version}.tar.xz
|
Source: https://releases.pagure.org/usermode/usermode-%{version}.tar.xz
|
||||||
Source1: config-util
|
Source1: config-util
|
||||||
|
|
||||||
Patch0: Do-not-use-deprecated-flask.h-and-av_permissions.patch
|
|
||||||
|
|
||||||
Requires: pam passwd util-linux
|
Requires: pam passwd util-linux
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
BuildRequires: desktop-file-utils gettext intltool perl-XML-Parser util-linux
|
BuildRequires: desktop-file-utils gettext intltool perl-XML-Parser util-linux
|
||||||
@ -92,6 +90,9 @@ done
|
|||||||
%{_mandir}/man8/*
|
%{_mandir}/man8/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Feb 8 2022 yangzhuangzhuang <yangzhuangzhuang1@h-partners.com> - 1.114-1
|
||||||
|
- update to 1.114
|
||||||
|
|
||||||
* Thu Sep 16 2021 wangjie <wangjie375@huawei.com> - 1.113-4
|
* Thu Sep 16 2021 wangjie <wangjie375@huawei.com> - 1.113-4
|
||||||
- segregated usermode-gtk
|
- segregated usermode-gtk
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user