|
@@ -71,7 +71,7 @@ struct timezone;
|
|
|
/* These functions are in security/commoncap.c */
|
|
|
extern int cap_capable(const struct cred *cred, struct user_namespace *ns,
|
|
|
int cap, int audit);
|
|
|
-extern int cap_settime(const struct timespec *ts, const struct timezone *tz);
|
|
|
+extern int cap_settime(const struct timespec64 *ts, const struct timezone *tz);
|
|
|
extern int cap_ptrace_access_check(struct task_struct *child, unsigned int mode);
|
|
|
extern int cap_ptrace_traceme(struct task_struct *parent);
|
|
|
extern int cap_capget(struct task_struct *target, kernel_cap_t *effective, kernel_cap_t *inheritable, kernel_cap_t *permitted);
|
|
@@ -208,7 +208,13 @@ int security_capable_noaudit(const struct cred *cred, struct user_namespace *ns,
|
|
|
int security_quotactl(int cmds, int type, int id, struct super_block *sb);
|
|
|
int security_quota_on(struct dentry *dentry);
|
|
|
int security_syslog(int type);
|
|
|
-int security_settime(const struct timespec *ts, const struct timezone *tz);
|
|
|
+int security_settime64(const struct timespec64 *ts, const struct timezone *tz);
|
|
|
+static inline int security_settime(const struct timespec *ts, const struct timezone *tz)
|
|
|
+{
|
|
|
+ struct timespec64 ts64 = timespec_to_timespec64(*ts);
|
|
|
+
|
|
|
+ return security_settime64(&ts64, tz);
|
|
|
+}
|
|
|
int security_vm_enough_memory_mm(struct mm_struct *mm, long pages);
|
|
|
int security_bprm_set_creds(struct linux_binprm *bprm);
|
|
|
int security_bprm_check(struct linux_binprm *bprm);
|
|
@@ -462,10 +468,18 @@ static inline int security_syslog(int type)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+static inline int security_settime64(const struct timespec64 *ts,
|
|
|
+ const struct timezone *tz)
|
|
|
+{
|
|
|
+ return cap_settime(ts, tz);
|
|
|
+}
|
|
|
+
|
|
|
static inline int security_settime(const struct timespec *ts,
|
|
|
const struct timezone *tz)
|
|
|
{
|
|
|
- return cap_settime(ts, tz);
|
|
|
+ struct timespec64 ts64 = timespec_to_timespec64(*ts);
|
|
|
+
|
|
|
+ return cap_settime(&ts64, tz);
|
|
|
}
|
|
|
|
|
|
static inline int security_vm_enough_memory_mm(struct mm_struct *mm, long pages)
|