40 lines
1.1 KiB
C
40 lines
1.1 KiB
C
/*
|
|
* Copyright (c) 2015 Samsung Electronics Co., Ltd.
|
|
*
|
|
* Sensitive Data Protection
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* 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 General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
|
|
#ifndef ECRYPTFS_DLP_H
|
|
#define ECRYPTFS_DLP_H
|
|
|
|
#define KNOX_DLP_XATTR_NAME "user.knox_dlp"
|
|
#define AID_KNOX_DLP KGIDT_INIT(8002)
|
|
#define AID_KNOX_DLP_RESTRICTED KGIDT_INIT(8003)
|
|
#define AID_KNOX_DLP_MEDIA KGIDT_INIT(8004)
|
|
|
|
#define DLP_DEBUG 1
|
|
|
|
struct knox_expiry {
|
|
int64_t tv_sec;
|
|
int64_t tv_nsec;
|
|
};
|
|
|
|
struct knox_dlp_data {
|
|
struct knox_expiry expiry_time;
|
|
};
|
|
|
|
#endif /* ECRYPTFS_DLP_H */
|