LCOV - code coverage report
Current view: top level - security/selinux/ss - policydb.c (source / functions) Hit Total Coverage
Test: combined.info Lines: 0 1577 0.0 %
Date: 2022-04-01 14:17:54 Functions: 0 71 0.0 %
Branches: 0 754 0.0 %

           Branch data     Line data    Source code
       1                 :            : // SPDX-License-Identifier: GPL-2.0-only
       2                 :            : /*
       3                 :            :  * Implementation of the policy database.
       4                 :            :  *
       5                 :            :  * Author : Stephen Smalley, <sds@tycho.nsa.gov>
       6                 :            :  */
       7                 :            : 
       8                 :            : /*
       9                 :            :  * Updated: Trusted Computer Solutions, Inc. <dgoeddel@trustedcs.com>
      10                 :            :  *
      11                 :            :  *      Support for enhanced MLS infrastructure.
      12                 :            :  *
      13                 :            :  * Updated: Frank Mayer <mayerf@tresys.com> and Karl MacMillan <kmacmillan@tresys.com>
      14                 :            :  *
      15                 :            :  *      Added conditional policy language extensions
      16                 :            :  *
      17                 :            :  * Updated: Hewlett-Packard <paul@paul-moore.com>
      18                 :            :  *
      19                 :            :  *      Added support for the policy capability bitmap
      20                 :            :  *
      21                 :            :  * Update: Mellanox Techonologies
      22                 :            :  *
      23                 :            :  *      Added Infiniband support
      24                 :            :  *
      25                 :            :  * Copyright (C) 2016 Mellanox Techonologies
      26                 :            :  * Copyright (C) 2007 Hewlett-Packard Development Company, L.P.
      27                 :            :  * Copyright (C) 2004-2005 Trusted Computer Solutions, Inc.
      28                 :            :  * Copyright (C) 2003 - 2004 Tresys Technology, LLC
      29                 :            :  */
      30                 :            : 
      31                 :            : #include <linux/kernel.h>
      32                 :            : #include <linux/sched.h>
      33                 :            : #include <linux/slab.h>
      34                 :            : #include <linux/string.h>
      35                 :            : #include <linux/errno.h>
      36                 :            : #include <linux/audit.h>
      37                 :            : #include "security.h"
      38                 :            : 
      39                 :            : #include "policydb.h"
      40                 :            : #include "conditional.h"
      41                 :            : #include "mls.h"
      42                 :            : #include "services.h"
      43                 :            : 
      44                 :            : #define _DEBUG_HASHES
      45                 :            : 
      46                 :            : #ifdef DEBUG_HASHES
      47                 :            : static const char *symtab_name[SYM_NUM] = {
      48                 :            :         "common prefixes",
      49                 :            :         "classes",
      50                 :            :         "roles",
      51                 :            :         "types",
      52                 :            :         "users",
      53                 :            :         "bools",
      54                 :            :         "levels",
      55                 :            :         "categories",
      56                 :            : };
      57                 :            : #endif
      58                 :            : 
      59                 :            : static unsigned int symtab_sizes[SYM_NUM] = {
      60                 :            :         2,
      61                 :            :         32,
      62                 :            :         16,
      63                 :            :         512,
      64                 :            :         128,
      65                 :            :         16,
      66                 :            :         16,
      67                 :            :         16,
      68                 :            : };
      69                 :            : 
      70                 :            : struct policydb_compat_info {
      71                 :            :         int version;
      72                 :            :         int sym_num;
      73                 :            :         int ocon_num;
      74                 :            : };
      75                 :            : 
      76                 :            : /* These need to be updated if SYM_NUM or OCON_NUM changes */
      77                 :            : static struct policydb_compat_info policydb_compat[] = {
      78                 :            :         {
      79                 :            :                 .version        = POLICYDB_VERSION_BASE,
      80                 :            :                 .sym_num        = SYM_NUM - 3,
      81                 :            :                 .ocon_num       = OCON_NUM - 3,
      82                 :            :         },
      83                 :            :         {
      84                 :            :                 .version        = POLICYDB_VERSION_BOOL,
      85                 :            :                 .sym_num        = SYM_NUM - 2,
      86                 :            :                 .ocon_num       = OCON_NUM - 3,
      87                 :            :         },
      88                 :            :         {
      89                 :            :                 .version        = POLICYDB_VERSION_IPV6,
      90                 :            :                 .sym_num        = SYM_NUM - 2,
      91                 :            :                 .ocon_num       = OCON_NUM - 2,
      92                 :            :         },
      93                 :            :         {
      94                 :            :                 .version        = POLICYDB_VERSION_NLCLASS,
      95                 :            :                 .sym_num        = SYM_NUM - 2,
      96                 :            :                 .ocon_num       = OCON_NUM - 2,
      97                 :            :         },
      98                 :            :         {
      99                 :            :                 .version        = POLICYDB_VERSION_MLS,
     100                 :            :                 .sym_num        = SYM_NUM,
     101                 :            :                 .ocon_num       = OCON_NUM - 2,
     102                 :            :         },
     103                 :            :         {
     104                 :            :                 .version        = POLICYDB_VERSION_AVTAB,
     105                 :            :                 .sym_num        = SYM_NUM,
     106                 :            :                 .ocon_num       = OCON_NUM - 2,
     107                 :            :         },
     108                 :            :         {
     109                 :            :                 .version        = POLICYDB_VERSION_RANGETRANS,
     110                 :            :                 .sym_num        = SYM_NUM,
     111                 :            :                 .ocon_num       = OCON_NUM - 2,
     112                 :            :         },
     113                 :            :         {
     114                 :            :                 .version        = POLICYDB_VERSION_POLCAP,
     115                 :            :                 .sym_num        = SYM_NUM,
     116                 :            :                 .ocon_num       = OCON_NUM - 2,
     117                 :            :         },
     118                 :            :         {
     119                 :            :                 .version        = POLICYDB_VERSION_PERMISSIVE,
     120                 :            :                 .sym_num        = SYM_NUM,
     121                 :            :                 .ocon_num       = OCON_NUM - 2,
     122                 :            :         },
     123                 :            :         {
     124                 :            :                 .version        = POLICYDB_VERSION_BOUNDARY,
     125                 :            :                 .sym_num        = SYM_NUM,
     126                 :            :                 .ocon_num       = OCON_NUM - 2,
     127                 :            :         },
     128                 :            :         {
     129                 :            :                 .version        = POLICYDB_VERSION_FILENAME_TRANS,
     130                 :            :                 .sym_num        = SYM_NUM,
     131                 :            :                 .ocon_num       = OCON_NUM - 2,
     132                 :            :         },
     133                 :            :         {
     134                 :            :                 .version        = POLICYDB_VERSION_ROLETRANS,
     135                 :            :                 .sym_num        = SYM_NUM,
     136                 :            :                 .ocon_num       = OCON_NUM - 2,
     137                 :            :         },
     138                 :            :         {
     139                 :            :                 .version        = POLICYDB_VERSION_NEW_OBJECT_DEFAULTS,
     140                 :            :                 .sym_num        = SYM_NUM,
     141                 :            :                 .ocon_num       = OCON_NUM - 2,
     142                 :            :         },
     143                 :            :         {
     144                 :            :                 .version        = POLICYDB_VERSION_DEFAULT_TYPE,
     145                 :            :                 .sym_num        = SYM_NUM,
     146                 :            :                 .ocon_num       = OCON_NUM - 2,
     147                 :            :         },
     148                 :            :         {
     149                 :            :                 .version        = POLICYDB_VERSION_CONSTRAINT_NAMES,
     150                 :            :                 .sym_num        = SYM_NUM,
     151                 :            :                 .ocon_num       = OCON_NUM - 2,
     152                 :            :         },
     153                 :            :         {
     154                 :            :                 .version        = POLICYDB_VERSION_XPERMS_IOCTL,
     155                 :            :                 .sym_num        = SYM_NUM,
     156                 :            :                 .ocon_num       = OCON_NUM - 2,
     157                 :            :         },
     158                 :            :         {
     159                 :            :                 .version        = POLICYDB_VERSION_INFINIBAND,
     160                 :            :                 .sym_num        = SYM_NUM,
     161                 :            :                 .ocon_num       = OCON_NUM,
     162                 :            :         },
     163                 :            :         {
     164                 :            :                 .version        = POLICYDB_VERSION_GLBLUB,
     165                 :            :                 .sym_num        = SYM_NUM,
     166                 :            :                 .ocon_num       = OCON_NUM,
     167                 :            :         },
     168                 :            : };
     169                 :            : 
     170                 :          0 : static struct policydb_compat_info *policydb_lookup_compat(int version)
     171                 :            : {
     172                 :          0 :         int i;
     173                 :          0 :         struct policydb_compat_info *info = NULL;
     174                 :            : 
     175   [ #  #  #  # ]:          0 :         for (i = 0; i < ARRAY_SIZE(policydb_compat); i++) {
     176   [ #  #  #  # ]:          0 :                 if (policydb_compat[i].version == version) {
     177                 :          0 :                         info = &policydb_compat[i];
     178                 :          0 :                         break;
     179                 :            :                 }
     180                 :            :         }
     181                 :          0 :         return info;
     182                 :            : }
     183                 :            : 
     184                 :            : /*
     185                 :            :  * The following *_destroy functions are used to
     186                 :            :  * free any memory allocated for each kind of
     187                 :            :  * symbol data in the policy database.
     188                 :            :  */
     189                 :            : 
     190                 :          0 : static int perm_destroy(void *key, void *datum, void *p)
     191                 :            : {
     192                 :          0 :         kfree(key);
     193                 :          0 :         kfree(datum);
     194                 :          0 :         return 0;
     195                 :            : }
     196                 :            : 
     197                 :          0 : static int common_destroy(void *key, void *datum, void *p)
     198                 :            : {
     199                 :          0 :         struct common_datum *comdatum;
     200                 :            : 
     201                 :          0 :         kfree(key);
     202         [ #  # ]:          0 :         if (datum) {
     203                 :          0 :                 comdatum = datum;
     204                 :          0 :                 hashtab_map(comdatum->permissions.table, perm_destroy, NULL);
     205                 :          0 :                 hashtab_destroy(comdatum->permissions.table);
     206                 :            :         }
     207                 :          0 :         kfree(datum);
     208                 :          0 :         return 0;
     209                 :            : }
     210                 :            : 
     211                 :          0 : static void constraint_expr_destroy(struct constraint_expr *expr)
     212                 :            : {
     213         [ #  # ]:          0 :         if (expr) {
     214                 :          0 :                 ebitmap_destroy(&expr->names);
     215         [ #  # ]:          0 :                 if (expr->type_names) {
     216                 :          0 :                         ebitmap_destroy(&expr->type_names->types);
     217                 :          0 :                         ebitmap_destroy(&expr->type_names->negset);
     218                 :          0 :                         kfree(expr->type_names);
     219                 :            :                 }
     220                 :          0 :                 kfree(expr);
     221                 :            :         }
     222                 :          0 : }
     223                 :            : 
     224                 :          0 : static int cls_destroy(void *key, void *datum, void *p)
     225                 :            : {
     226                 :          0 :         struct class_datum *cladatum;
     227                 :          0 :         struct constraint_node *constraint, *ctemp;
     228                 :          0 :         struct constraint_expr *e, *etmp;
     229                 :            : 
     230                 :          0 :         kfree(key);
     231         [ #  # ]:          0 :         if (datum) {
     232                 :          0 :                 cladatum = datum;
     233                 :          0 :                 hashtab_map(cladatum->permissions.table, perm_destroy, NULL);
     234                 :          0 :                 hashtab_destroy(cladatum->permissions.table);
     235                 :          0 :                 constraint = cladatum->constraints;
     236         [ #  # ]:          0 :                 while (constraint) {
     237                 :          0 :                         e = constraint->expr;
     238         [ #  # ]:          0 :                         while (e) {
     239                 :          0 :                                 etmp = e;
     240                 :          0 :                                 e = e->next;
     241                 :          0 :                                 constraint_expr_destroy(etmp);
     242                 :            :                         }
     243                 :          0 :                         ctemp = constraint;
     244                 :          0 :                         constraint = constraint->next;
     245                 :          0 :                         kfree(ctemp);
     246                 :            :                 }
     247                 :            : 
     248                 :          0 :                 constraint = cladatum->validatetrans;
     249         [ #  # ]:          0 :                 while (constraint) {
     250                 :          0 :                         e = constraint->expr;
     251         [ #  # ]:          0 :                         while (e) {
     252                 :          0 :                                 etmp = e;
     253                 :          0 :                                 e = e->next;
     254                 :          0 :                                 constraint_expr_destroy(etmp);
     255                 :            :                         }
     256                 :          0 :                         ctemp = constraint;
     257                 :          0 :                         constraint = constraint->next;
     258                 :          0 :                         kfree(ctemp);
     259                 :            :                 }
     260                 :          0 :                 kfree(cladatum->comkey);
     261                 :            :         }
     262                 :          0 :         kfree(datum);
     263                 :          0 :         return 0;
     264                 :            : }
     265                 :            : 
     266                 :          0 : static int role_destroy(void *key, void *datum, void *p)
     267                 :            : {
     268                 :          0 :         struct role_datum *role;
     269                 :            : 
     270                 :          0 :         kfree(key);
     271         [ #  # ]:          0 :         if (datum) {
     272                 :          0 :                 role = datum;
     273                 :          0 :                 ebitmap_destroy(&role->dominates);
     274                 :          0 :                 ebitmap_destroy(&role->types);
     275                 :            :         }
     276                 :          0 :         kfree(datum);
     277                 :          0 :         return 0;
     278                 :            : }
     279                 :            : 
     280                 :          0 : static int type_destroy(void *key, void *datum, void *p)
     281                 :            : {
     282                 :          0 :         kfree(key);
     283                 :          0 :         kfree(datum);
     284                 :          0 :         return 0;
     285                 :            : }
     286                 :            : 
     287                 :          0 : static int user_destroy(void *key, void *datum, void *p)
     288                 :            : {
     289                 :          0 :         struct user_datum *usrdatum;
     290                 :            : 
     291                 :          0 :         kfree(key);
     292         [ #  # ]:          0 :         if (datum) {
     293                 :          0 :                 usrdatum = datum;
     294                 :          0 :                 ebitmap_destroy(&usrdatum->roles);
     295                 :          0 :                 ebitmap_destroy(&usrdatum->range.level[0].cat);
     296                 :          0 :                 ebitmap_destroy(&usrdatum->range.level[1].cat);
     297                 :          0 :                 ebitmap_destroy(&usrdatum->dfltlevel.cat);
     298                 :            :         }
     299                 :          0 :         kfree(datum);
     300                 :          0 :         return 0;
     301                 :            : }
     302                 :            : 
     303                 :          0 : static int sens_destroy(void *key, void *datum, void *p)
     304                 :            : {
     305                 :          0 :         struct level_datum *levdatum;
     306                 :            : 
     307                 :          0 :         kfree(key);
     308         [ #  # ]:          0 :         if (datum) {
     309                 :          0 :                 levdatum = datum;
     310         [ #  # ]:          0 :                 if (levdatum->level)
     311                 :          0 :                         ebitmap_destroy(&levdatum->level->cat);
     312                 :          0 :                 kfree(levdatum->level);
     313                 :            :         }
     314                 :          0 :         kfree(datum);
     315                 :          0 :         return 0;
     316                 :            : }
     317                 :            : 
     318                 :          0 : static int cat_destroy(void *key, void *datum, void *p)
     319                 :            : {
     320                 :          0 :         kfree(key);
     321                 :          0 :         kfree(datum);
     322                 :          0 :         return 0;
     323                 :            : }
     324                 :            : 
     325                 :            : static int (*destroy_f[SYM_NUM]) (void *key, void *datum, void *datap) =
     326                 :            : {
     327                 :            :         common_destroy,
     328                 :            :         cls_destroy,
     329                 :            :         role_destroy,
     330                 :            :         type_destroy,
     331                 :            :         user_destroy,
     332                 :            :         cond_destroy_bool,
     333                 :            :         sens_destroy,
     334                 :            :         cat_destroy,
     335                 :            : };
     336                 :            : 
     337                 :          0 : static int filenametr_destroy(void *key, void *datum, void *p)
     338                 :            : {
     339                 :          0 :         struct filename_trans *ft = key;
     340                 :            : 
     341                 :          0 :         kfree(ft->name);
     342                 :          0 :         kfree(key);
     343                 :          0 :         kfree(datum);
     344                 :          0 :         cond_resched();
     345                 :          0 :         return 0;
     346                 :            : }
     347                 :            : 
     348                 :          0 : static int range_tr_destroy(void *key, void *datum, void *p)
     349                 :            : {
     350                 :          0 :         struct mls_range *rt = datum;
     351                 :            : 
     352                 :          0 :         kfree(key);
     353                 :          0 :         ebitmap_destroy(&rt->level[0].cat);
     354                 :          0 :         ebitmap_destroy(&rt->level[1].cat);
     355                 :          0 :         kfree(datum);
     356                 :          0 :         cond_resched();
     357                 :          0 :         return 0;
     358                 :            : }
     359                 :            : 
     360                 :          0 : static void ocontext_destroy(struct ocontext *c, int i)
     361                 :            : {
     362         [ #  # ]:          0 :         if (!c)
     363                 :            :                 return;
     364                 :            : 
     365                 :          0 :         context_destroy(&c->context[0]);
     366                 :          0 :         context_destroy(&c->context[1]);
     367                 :          0 :         if (i == OCON_ISID || i == OCON_FS ||
     368   [ #  #  #  # ]:          0 :             i == OCON_NETIF || i == OCON_FSUSE)
     369                 :          0 :                 kfree(c->u.name);
     370                 :          0 :         kfree(c);
     371                 :            : }
     372                 :            : 
     373                 :            : /*
     374                 :            :  * Initialize the role table.
     375                 :            :  */
     376                 :            : static int roles_init(struct policydb *p)
     377                 :            : {
     378                 :            :         char *key = NULL;
     379                 :            :         int rc;
     380                 :            :         struct role_datum *role;
     381                 :            : 
     382                 :            :         role = kzalloc(sizeof(*role), GFP_KERNEL);
     383                 :            :         if (!role)
     384                 :            :                 return -ENOMEM;
     385                 :            : 
     386                 :            :         rc = -EINVAL;
     387                 :            :         role->value = ++p->p_roles.nprim;
     388                 :            :         if (role->value != OBJECT_R_VAL)
     389                 :            :                 goto out;
     390                 :            : 
     391                 :            :         rc = -ENOMEM;
     392                 :            :         key = kstrdup(OBJECT_R, GFP_KERNEL);
     393                 :            :         if (!key)
     394                 :            :                 goto out;
     395                 :            : 
     396                 :            :         rc = hashtab_insert(p->p_roles.table, key, role);
     397                 :            :         if (rc)
     398                 :            :                 goto out;
     399                 :            : 
     400                 :            :         return 0;
     401                 :            : out:
     402                 :            :         kfree(key);
     403                 :            :         kfree(role);
     404                 :            :         return rc;
     405                 :            : }
     406                 :            : 
     407                 :          0 : static u32 filenametr_hash(struct hashtab *h, const void *k)
     408                 :            : {
     409                 :          0 :         const struct filename_trans *ft = k;
     410                 :          0 :         unsigned long hash;
     411                 :          0 :         unsigned int byte_num;
     412                 :          0 :         unsigned char focus;
     413                 :            : 
     414                 :          0 :         hash = ft->stype ^ ft->ttype ^ ft->tclass;
     415                 :            : 
     416                 :          0 :         byte_num = 0;
     417         [ #  # ]:          0 :         while ((focus = ft->name[byte_num++]))
     418                 :          0 :                 hash = partial_name_hash(focus, hash);
     419                 :          0 :         return hash & (h->size - 1);
     420                 :            : }
     421                 :            : 
     422                 :          0 : static int filenametr_cmp(struct hashtab *h, const void *k1, const void *k2)
     423                 :            : {
     424                 :          0 :         const struct filename_trans *ft1 = k1;
     425                 :          0 :         const struct filename_trans *ft2 = k2;
     426                 :          0 :         int v;
     427                 :            : 
     428                 :          0 :         v = ft1->stype - ft2->stype;
     429         [ #  # ]:          0 :         if (v)
     430                 :            :                 return v;
     431                 :            : 
     432                 :          0 :         v = ft1->ttype - ft2->ttype;
     433         [ #  # ]:          0 :         if (v)
     434                 :            :                 return v;
     435                 :            : 
     436                 :          0 :         v = ft1->tclass - ft2->tclass;
     437         [ #  # ]:          0 :         if (v)
     438                 :            :                 return v;
     439                 :            : 
     440                 :          0 :         return strcmp(ft1->name, ft2->name);
     441                 :            : 
     442                 :            : }
     443                 :            : 
     444                 :          0 : static u32 rangetr_hash(struct hashtab *h, const void *k)
     445                 :            : {
     446                 :          0 :         const struct range_trans *key = k;
     447                 :            : 
     448                 :          0 :         return (key->source_type + (key->target_type << 3) +
     449                 :          0 :                 (key->target_class << 5)) & (h->size - 1);
     450                 :            : }
     451                 :            : 
     452                 :          0 : static int rangetr_cmp(struct hashtab *h, const void *k1, const void *k2)
     453                 :            : {
     454                 :          0 :         const struct range_trans *key1 = k1, *key2 = k2;
     455                 :          0 :         int v;
     456                 :            : 
     457                 :          0 :         v = key1->source_type - key2->source_type;
     458         [ #  # ]:          0 :         if (v)
     459                 :            :                 return v;
     460                 :            : 
     461                 :          0 :         v = key1->target_type - key2->target_type;
     462         [ #  # ]:          0 :         if (v)
     463                 :            :                 return v;
     464                 :            : 
     465                 :          0 :         v = key1->target_class - key2->target_class;
     466                 :            : 
     467                 :          0 :         return v;
     468                 :            : }
     469                 :            : 
     470                 :            : /*
     471                 :            :  * Initialize a policy database structure.
     472                 :            :  */
     473                 :          0 : static int policydb_init(struct policydb *p)
     474                 :            : {
     475                 :          0 :         int i, rc;
     476                 :            : 
     477                 :          0 :         memset(p, 0, sizeof(*p));
     478                 :            : 
     479         [ #  # ]:          0 :         for (i = 0; i < SYM_NUM; i++) {
     480                 :          0 :                 rc = symtab_init(&p->symtab[i], symtab_sizes[i]);
     481         [ #  # ]:          0 :                 if (rc)
     482                 :          0 :                         goto out;
     483                 :            :         }
     484                 :            : 
     485                 :          0 :         rc = avtab_init(&p->te_avtab);
     486         [ #  # ]:          0 :         if (rc)
     487                 :          0 :                 goto out;
     488                 :            : 
     489                 :          0 :         rc = roles_init(p);
     490         [ #  # ]:          0 :         if (rc)
     491                 :          0 :                 goto out;
     492                 :            : 
     493                 :          0 :         rc = cond_policydb_init(p);
     494         [ #  # ]:          0 :         if (rc)
     495                 :          0 :                 goto out;
     496                 :            : 
     497                 :          0 :         p->filename_trans = hashtab_create(filenametr_hash, filenametr_cmp,
     498                 :            :                                            (1 << 10));
     499         [ #  # ]:          0 :         if (!p->filename_trans) {
     500                 :          0 :                 rc = -ENOMEM;
     501                 :          0 :                 goto out;
     502                 :            :         }
     503                 :            : 
     504                 :          0 :         p->range_tr = hashtab_create(rangetr_hash, rangetr_cmp, 256);
     505         [ #  # ]:          0 :         if (!p->range_tr) {
     506                 :          0 :                 rc = -ENOMEM;
     507                 :          0 :                 goto out;
     508                 :            :         }
     509                 :            : 
     510                 :          0 :         ebitmap_init(&p->filename_trans_ttypes);
     511                 :          0 :         ebitmap_init(&p->policycaps);
     512                 :          0 :         ebitmap_init(&p->permissive_map);
     513                 :            : 
     514                 :          0 :         return 0;
     515                 :          0 : out:
     516                 :          0 :         hashtab_destroy(p->filename_trans);
     517                 :          0 :         hashtab_destroy(p->range_tr);
     518         [ #  # ]:          0 :         for (i = 0; i < SYM_NUM; i++) {
     519                 :          0 :                 hashtab_map(p->symtab[i].table, destroy_f[i], NULL);
     520                 :          0 :                 hashtab_destroy(p->symtab[i].table);
     521                 :            :         }
     522                 :            :         return rc;
     523                 :            : }
     524                 :            : 
     525                 :            : /*
     526                 :            :  * The following *_index functions are used to
     527                 :            :  * define the val_to_name and val_to_struct arrays
     528                 :            :  * in a policy database structure.  The val_to_name
     529                 :            :  * arrays are used when converting security context
     530                 :            :  * structures into string representations.  The
     531                 :            :  * val_to_struct arrays are used when the attributes
     532                 :            :  * of a class, role, or user are needed.
     533                 :            :  */
     534                 :            : 
     535                 :          0 : static int common_index(void *key, void *datum, void *datap)
     536                 :            : {
     537                 :          0 :         struct policydb *p;
     538                 :          0 :         struct common_datum *comdatum;
     539                 :            : 
     540                 :          0 :         comdatum = datum;
     541                 :          0 :         p = datap;
     542   [ #  #  #  # ]:          0 :         if (!comdatum->value || comdatum->value > p->p_commons.nprim)
     543                 :            :                 return -EINVAL;
     544                 :            : 
     545                 :          0 :         p->sym_val_to_name[SYM_COMMONS][comdatum->value - 1] = key;
     546                 :            : 
     547                 :          0 :         return 0;
     548                 :            : }
     549                 :            : 
     550                 :          0 : static int class_index(void *key, void *datum, void *datap)
     551                 :            : {
     552                 :          0 :         struct policydb *p;
     553                 :          0 :         struct class_datum *cladatum;
     554                 :            : 
     555                 :          0 :         cladatum = datum;
     556                 :          0 :         p = datap;
     557   [ #  #  #  # ]:          0 :         if (!cladatum->value || cladatum->value > p->p_classes.nprim)
     558                 :            :                 return -EINVAL;
     559                 :            : 
     560                 :          0 :         p->sym_val_to_name[SYM_CLASSES][cladatum->value - 1] = key;
     561                 :          0 :         p->class_val_to_struct[cladatum->value - 1] = cladatum;
     562                 :          0 :         return 0;
     563                 :            : }
     564                 :            : 
     565                 :          0 : static int role_index(void *key, void *datum, void *datap)
     566                 :            : {
     567                 :          0 :         struct policydb *p;
     568                 :          0 :         struct role_datum *role;
     569                 :            : 
     570                 :          0 :         role = datum;
     571                 :          0 :         p = datap;
     572         [ #  # ]:          0 :         if (!role->value
     573         [ #  # ]:          0 :             || role->value > p->p_roles.nprim
     574         [ #  # ]:          0 :             || role->bounds > p->p_roles.nprim)
     575                 :            :                 return -EINVAL;
     576                 :            : 
     577                 :          0 :         p->sym_val_to_name[SYM_ROLES][role->value - 1] = key;
     578                 :          0 :         p->role_val_to_struct[role->value - 1] = role;
     579                 :          0 :         return 0;
     580                 :            : }
     581                 :            : 
     582                 :          0 : static int type_index(void *key, void *datum, void *datap)
     583                 :            : {
     584                 :          0 :         struct policydb *p;
     585                 :          0 :         struct type_datum *typdatum;
     586                 :            : 
     587                 :          0 :         typdatum = datum;
     588                 :          0 :         p = datap;
     589                 :            : 
     590         [ #  # ]:          0 :         if (typdatum->primary) {
     591         [ #  # ]:          0 :                 if (!typdatum->value
     592         [ #  # ]:          0 :                     || typdatum->value > p->p_types.nprim
     593         [ #  # ]:          0 :                     || typdatum->bounds > p->p_types.nprim)
     594                 :            :                         return -EINVAL;
     595                 :          0 :                 p->sym_val_to_name[SYM_TYPES][typdatum->value - 1] = key;
     596                 :          0 :                 p->type_val_to_struct[typdatum->value - 1] = typdatum;
     597                 :            :         }
     598                 :            : 
     599                 :            :         return 0;
     600                 :            : }
     601                 :            : 
     602                 :          0 : static int user_index(void *key, void *datum, void *datap)
     603                 :            : {
     604                 :          0 :         struct policydb *p;
     605                 :          0 :         struct user_datum *usrdatum;
     606                 :            : 
     607                 :          0 :         usrdatum = datum;
     608                 :          0 :         p = datap;
     609         [ #  # ]:          0 :         if (!usrdatum->value
     610         [ #  # ]:          0 :             || usrdatum->value > p->p_users.nprim
     611         [ #  # ]:          0 :             || usrdatum->bounds > p->p_users.nprim)
     612                 :            :                 return -EINVAL;
     613                 :            : 
     614                 :          0 :         p->sym_val_to_name[SYM_USERS][usrdatum->value - 1] = key;
     615                 :          0 :         p->user_val_to_struct[usrdatum->value - 1] = usrdatum;
     616                 :          0 :         return 0;
     617                 :            : }
     618                 :            : 
     619                 :          0 : static int sens_index(void *key, void *datum, void *datap)
     620                 :            : {
     621                 :          0 :         struct policydb *p;
     622                 :          0 :         struct level_datum *levdatum;
     623                 :            : 
     624                 :          0 :         levdatum = datum;
     625                 :          0 :         p = datap;
     626                 :            : 
     627         [ #  # ]:          0 :         if (!levdatum->isalias) {
     628         [ #  # ]:          0 :                 if (!levdatum->level->sens ||
     629         [ #  # ]:          0 :                     levdatum->level->sens > p->p_levels.nprim)
     630                 :            :                         return -EINVAL;
     631                 :            : 
     632                 :          0 :                 p->sym_val_to_name[SYM_LEVELS][levdatum->level->sens - 1] = key;
     633                 :            :         }
     634                 :            : 
     635                 :            :         return 0;
     636                 :            : }
     637                 :            : 
     638                 :          0 : static int cat_index(void *key, void *datum, void *datap)
     639                 :            : {
     640                 :          0 :         struct policydb *p;
     641                 :          0 :         struct cat_datum *catdatum;
     642                 :            : 
     643                 :          0 :         catdatum = datum;
     644                 :          0 :         p = datap;
     645                 :            : 
     646         [ #  # ]:          0 :         if (!catdatum->isalias) {
     647   [ #  #  #  # ]:          0 :                 if (!catdatum->value || catdatum->value > p->p_cats.nprim)
     648                 :            :                         return -EINVAL;
     649                 :            : 
     650                 :          0 :                 p->sym_val_to_name[SYM_CATS][catdatum->value - 1] = key;
     651                 :            :         }
     652                 :            : 
     653                 :            :         return 0;
     654                 :            : }
     655                 :            : 
     656                 :            : static int (*index_f[SYM_NUM]) (void *key, void *datum, void *datap) =
     657                 :            : {
     658                 :            :         common_index,
     659                 :            :         class_index,
     660                 :            :         role_index,
     661                 :            :         type_index,
     662                 :            :         user_index,
     663                 :            :         cond_index_bool,
     664                 :            :         sens_index,
     665                 :            :         cat_index,
     666                 :            : };
     667                 :            : 
     668                 :            : #ifdef DEBUG_HASHES
     669                 :            : static void hash_eval(struct hashtab *h, const char *hash_name)
     670                 :            : {
     671                 :            :         struct hashtab_info info;
     672                 :            : 
     673                 :            :         hashtab_stat(h, &info);
     674                 :            :         pr_debug("SELinux: %s:  %d entries and %d/%d buckets used, longest chain length %d\n",
     675                 :            :                  hash_name, h->nel, info.slots_used, h->size,
     676                 :            :                  info.max_chain_len);
     677                 :            : }
     678                 :            : 
     679                 :            : static void symtab_hash_eval(struct symtab *s)
     680                 :            : {
     681                 :            :         int i;
     682                 :            : 
     683                 :            :         for (i = 0; i < SYM_NUM; i++)
     684                 :            :                 hash_eval(s[i].table, symtab_name[i]);
     685                 :            : }
     686                 :            : 
     687                 :            : #else
     688                 :            : static inline void hash_eval(struct hashtab *h, char *hash_name)
     689                 :            : {
     690                 :            : }
     691                 :            : #endif
     692                 :            : 
     693                 :            : /*
     694                 :            :  * Define the other val_to_name and val_to_struct arrays
     695                 :            :  * in a policy database structure.
     696                 :            :  *
     697                 :            :  * Caller must clean up on failure.
     698                 :            :  */
     699                 :          0 : static int policydb_index(struct policydb *p)
     700                 :            : {
     701                 :          0 :         int i, rc;
     702                 :            : 
     703                 :          0 :         if (p->mls_enabled)
     704                 :            :                 pr_debug("SELinux:  %d users, %d roles, %d types, %d bools, %d sens, %d cats\n",
     705                 :            :                          p->p_users.nprim, p->p_roles.nprim, p->p_types.nprim,
     706                 :            :                          p->p_bools.nprim, p->p_levels.nprim, p->p_cats.nprim);
     707                 :            :         else
     708                 :            :                 pr_debug("SELinux:  %d users, %d roles, %d types, %d bools\n",
     709                 :            :                          p->p_users.nprim, p->p_roles.nprim, p->p_types.nprim,
     710                 :            :                          p->p_bools.nprim);
     711                 :            : 
     712                 :          0 :         pr_debug("SELinux:  %d classes, %d rules\n",
     713                 :            :                  p->p_classes.nprim, p->te_avtab.nel);
     714                 :            : 
     715                 :            : #ifdef DEBUG_HASHES
     716                 :            :         avtab_hash_eval(&p->te_avtab, "rules");
     717                 :            :         symtab_hash_eval(p->symtab);
     718                 :            : #endif
     719                 :            : 
     720                 :          0 :         p->class_val_to_struct = kcalloc(p->p_classes.nprim,
     721                 :            :                                          sizeof(*p->class_val_to_struct),
     722                 :            :                                          GFP_KERNEL);
     723         [ #  # ]:          0 :         if (!p->class_val_to_struct)
     724                 :            :                 return -ENOMEM;
     725                 :            : 
     726                 :          0 :         p->role_val_to_struct = kcalloc(p->p_roles.nprim,
     727                 :            :                                         sizeof(*p->role_val_to_struct),
     728                 :            :                                         GFP_KERNEL);
     729         [ #  # ]:          0 :         if (!p->role_val_to_struct)
     730                 :            :                 return -ENOMEM;
     731                 :            : 
     732                 :          0 :         p->user_val_to_struct = kcalloc(p->p_users.nprim,
     733                 :            :                                         sizeof(*p->user_val_to_struct),
     734                 :            :                                         GFP_KERNEL);
     735         [ #  # ]:          0 :         if (!p->user_val_to_struct)
     736                 :            :                 return -ENOMEM;
     737                 :            : 
     738                 :          0 :         p->type_val_to_struct = kvcalloc(p->p_types.nprim,
     739                 :            :                                          sizeof(*p->type_val_to_struct),
     740                 :            :                                          GFP_KERNEL);
     741         [ #  # ]:          0 :         if (!p->type_val_to_struct)
     742                 :            :                 return -ENOMEM;
     743                 :            : 
     744                 :          0 :         rc = cond_init_bool_indexes(p);
     745         [ #  # ]:          0 :         if (rc)
     746                 :          0 :                 goto out;
     747                 :            : 
     748         [ #  # ]:          0 :         for (i = 0; i < SYM_NUM; i++) {
     749                 :          0 :                 p->sym_val_to_name[i] = kvcalloc(p->symtab[i].nprim,
     750                 :            :                                                  sizeof(char *),
     751                 :            :                                                  GFP_KERNEL);
     752         [ #  # ]:          0 :                 if (!p->sym_val_to_name[i])
     753                 :            :                         return -ENOMEM;
     754                 :            : 
     755                 :          0 :                 rc = hashtab_map(p->symtab[i].table, index_f[i], p);
     756         [ #  # ]:          0 :                 if (rc)
     757                 :          0 :                         goto out;
     758                 :            :         }
     759                 :            :         rc = 0;
     760                 :            : out:
     761                 :            :         return rc;
     762                 :            : }
     763                 :            : 
     764                 :            : /*
     765                 :            :  * Free any memory allocated by a policy database structure.
     766                 :            :  */
     767                 :          0 : void policydb_destroy(struct policydb *p)
     768                 :            : {
     769                 :          0 :         struct ocontext *c, *ctmp;
     770                 :          0 :         struct genfs *g, *gtmp;
     771                 :          0 :         int i;
     772                 :          0 :         struct role_allow *ra, *lra = NULL;
     773                 :          0 :         struct role_trans *tr, *ltr = NULL;
     774                 :            : 
     775         [ #  # ]:          0 :         for (i = 0; i < SYM_NUM; i++) {
     776                 :          0 :                 cond_resched();
     777                 :          0 :                 hashtab_map(p->symtab[i].table, destroy_f[i], NULL);
     778                 :          0 :                 hashtab_destroy(p->symtab[i].table);
     779                 :            :         }
     780                 :            : 
     781         [ #  # ]:          0 :         for (i = 0; i < SYM_NUM; i++)
     782                 :          0 :                 kvfree(p->sym_val_to_name[i]);
     783                 :            : 
     784                 :          0 :         kfree(p->class_val_to_struct);
     785                 :          0 :         kfree(p->role_val_to_struct);
     786                 :          0 :         kfree(p->user_val_to_struct);
     787                 :          0 :         kvfree(p->type_val_to_struct);
     788                 :            : 
     789                 :          0 :         avtab_destroy(&p->te_avtab);
     790                 :            : 
     791         [ #  # ]:          0 :         for (i = 0; i < OCON_NUM; i++) {
     792                 :          0 :                 cond_resched();
     793                 :          0 :                 c = p->ocontexts[i];
     794         [ #  # ]:          0 :                 while (c) {
     795                 :          0 :                         ctmp = c;
     796                 :          0 :                         c = c->next;
     797                 :          0 :                         ocontext_destroy(ctmp, i);
     798                 :            :                 }
     799                 :          0 :                 p->ocontexts[i] = NULL;
     800                 :            :         }
     801                 :            : 
     802                 :          0 :         g = p->genfs;
     803         [ #  # ]:          0 :         while (g) {
     804                 :          0 :                 cond_resched();
     805                 :          0 :                 kfree(g->fstype);
     806                 :          0 :                 c = g->head;
     807         [ #  # ]:          0 :                 while (c) {
     808                 :          0 :                         ctmp = c;
     809                 :          0 :                         c = c->next;
     810                 :          0 :                         ocontext_destroy(ctmp, OCON_FSUSE);
     811                 :            :                 }
     812                 :          0 :                 gtmp = g;
     813                 :          0 :                 g = g->next;
     814                 :          0 :                 kfree(gtmp);
     815                 :            :         }
     816                 :          0 :         p->genfs = NULL;
     817                 :            : 
     818                 :          0 :         cond_policydb_destroy(p);
     819                 :            : 
     820         [ #  # ]:          0 :         for (tr = p->role_tr; tr; tr = tr->next) {
     821                 :          0 :                 cond_resched();
     822                 :          0 :                 kfree(ltr);
     823                 :          0 :                 ltr = tr;
     824                 :            :         }
     825                 :          0 :         kfree(ltr);
     826                 :            : 
     827         [ #  # ]:          0 :         for (ra = p->role_allow; ra; ra = ra->next) {
     828                 :          0 :                 cond_resched();
     829                 :          0 :                 kfree(lra);
     830                 :          0 :                 lra = ra;
     831                 :            :         }
     832                 :          0 :         kfree(lra);
     833                 :            : 
     834                 :          0 :         hashtab_map(p->filename_trans, filenametr_destroy, NULL);
     835                 :          0 :         hashtab_destroy(p->filename_trans);
     836                 :            : 
     837                 :          0 :         hashtab_map(p->range_tr, range_tr_destroy, NULL);
     838                 :          0 :         hashtab_destroy(p->range_tr);
     839                 :            : 
     840         [ #  # ]:          0 :         if (p->type_attr_map_array) {
     841         [ #  # ]:          0 :                 for (i = 0; i < p->p_types.nprim; i++)
     842                 :          0 :                         ebitmap_destroy(&p->type_attr_map_array[i]);
     843                 :          0 :                 kvfree(p->type_attr_map_array);
     844                 :            :         }
     845                 :            : 
     846                 :          0 :         ebitmap_destroy(&p->filename_trans_ttypes);
     847                 :          0 :         ebitmap_destroy(&p->policycaps);
     848                 :          0 :         ebitmap_destroy(&p->permissive_map);
     849                 :          0 : }
     850                 :            : 
     851                 :            : /*
     852                 :            :  * Load the initial SIDs specified in a policy database
     853                 :            :  * structure into a SID table.
     854                 :            :  */
     855                 :          0 : int policydb_load_isids(struct policydb *p, struct sidtab *s)
     856                 :            : {
     857                 :          0 :         struct ocontext *head, *c;
     858                 :          0 :         int rc;
     859                 :            : 
     860                 :          0 :         rc = sidtab_init(s);
     861         [ #  # ]:          0 :         if (rc) {
     862                 :          0 :                 pr_err("SELinux:  out of memory on SID table init\n");
     863                 :          0 :                 goto out;
     864                 :            :         }
     865                 :            : 
     866                 :          0 :         head = p->ocontexts[OCON_ISID];
     867         [ #  # ]:          0 :         for (c = head; c; c = c->next) {
     868                 :          0 :                 rc = -EINVAL;
     869         [ #  # ]:          0 :                 if (!c->context[0].user) {
     870                 :          0 :                         pr_err("SELinux:  SID %s was never defined.\n",
     871                 :            :                                 c->u.name);
     872                 :          0 :                         sidtab_destroy(s);
     873                 :          0 :                         goto out;
     874                 :            :                 }
     875         [ #  # ]:          0 :                 if (c->sid[0] == SECSID_NULL || c->sid[0] > SECINITSID_NUM) {
     876                 :          0 :                         pr_err("SELinux:  Initial SID %s out of range.\n",
     877                 :            :                                 c->u.name);
     878                 :          0 :                         sidtab_destroy(s);
     879                 :          0 :                         goto out;
     880                 :            :                 }
     881                 :          0 :                 rc = context_add_hash(p, &c->context[0]);
     882         [ #  # ]:          0 :                 if (rc) {
     883                 :          0 :                         sidtab_destroy(s);
     884                 :          0 :                         goto out;
     885                 :            :                 }
     886                 :            : 
     887                 :          0 :                 rc = sidtab_set_initial(s, c->sid[0], &c->context[0]);
     888         [ #  # ]:          0 :                 if (rc) {
     889                 :          0 :                         pr_err("SELinux:  unable to load initial SID %s.\n",
     890                 :            :                                 c->u.name);
     891                 :          0 :                         sidtab_destroy(s);
     892                 :          0 :                         goto out;
     893                 :            :                 }
     894                 :            :         }
     895                 :            :         rc = 0;
     896                 :          0 : out:
     897                 :          0 :         return rc;
     898                 :            : }
     899                 :            : 
     900                 :          0 : int policydb_class_isvalid(struct policydb *p, unsigned int class)
     901                 :            : {
     902   [ #  #  #  #  :          0 :         if (!class || class > p->p_classes.nprim)
             #  #  #  # ]
     903                 :          0 :                 return 0;
     904                 :            :         return 1;
     905                 :            : }
     906                 :            : 
     907                 :          0 : int policydb_role_isvalid(struct policydb *p, unsigned int role)
     908                 :            : {
     909   [ #  #  #  #  :          0 :         if (!role || role > p->p_roles.nprim)
          #  #  #  #  #  
          #  #  #  #  #  
                   #  # ]
     910                 :          0 :                 return 0;
     911                 :            :         return 1;
     912                 :            : }
     913                 :            : 
     914                 :          0 : int policydb_type_isvalid(struct policydb *p, unsigned int type)
     915                 :            : {
     916   [ #  #  #  #  :          0 :         if (!type || type > p->p_types.nprim)
          #  #  #  #  #  
             #  #  #  #  
                      # ]
     917                 :          0 :                 return 0;
     918                 :            :         return 1;
     919                 :            : }
     920                 :            : 
     921                 :            : /*
     922                 :            :  * Return 1 if the fields in the security context
     923                 :            :  * structure `c' are valid.  Return 0 otherwise.
     924                 :            :  */
     925                 :          0 : int policydb_context_isvalid(struct policydb *p, struct context *c)
     926                 :            : {
     927                 :          0 :         struct role_datum *role;
     928                 :          0 :         struct user_datum *usrdatum;
     929                 :            : 
     930   [ #  #  #  # ]:          0 :         if (!c->role || c->role > p->p_roles.nprim)
     931                 :            :                 return 0;
     932                 :            : 
     933   [ #  #  #  # ]:          0 :         if (!c->user || c->user > p->p_users.nprim)
     934                 :            :                 return 0;
     935                 :            : 
     936   [ #  #  #  # ]:          0 :         if (!c->type || c->type > p->p_types.nprim)
     937                 :            :                 return 0;
     938                 :            : 
     939         [ #  # ]:          0 :         if (c->role != OBJECT_R_VAL) {
     940                 :            :                 /*
     941                 :            :                  * Role must be authorized for the type.
     942                 :            :                  */
     943                 :          0 :                 role = p->role_val_to_struct[c->role - 1];
     944   [ #  #  #  # ]:          0 :                 if (!role || !ebitmap_get_bit(&role->types, c->type - 1))
     945                 :            :                         /* role may not be associated with type */
     946                 :          0 :                         return 0;
     947                 :            : 
     948                 :            :                 /*
     949                 :            :                  * User must be authorized for the role.
     950                 :            :                  */
     951                 :          0 :                 usrdatum = p->user_val_to_struct[c->user - 1];
     952         [ #  # ]:          0 :                 if (!usrdatum)
     953                 :            :                         return 0;
     954                 :            : 
     955         [ #  # ]:          0 :                 if (!ebitmap_get_bit(&usrdatum->roles, c->role - 1))
     956                 :            :                         /* user may not be associated with role */
     957                 :            :                         return 0;
     958                 :            :         }
     959                 :            : 
     960         [ #  # ]:          0 :         if (!mls_context_isvalid(p, c))
     961                 :          0 :                 return 0;
     962                 :            : 
     963                 :            :         return 1;
     964                 :            : }
     965                 :            : 
     966                 :            : /*
     967                 :            :  * Read a MLS range structure from a policydb binary
     968                 :            :  * representation file.
     969                 :            :  */
     970                 :          0 : static int mls_read_range_helper(struct mls_range *r, void *fp)
     971                 :            : {
     972                 :          0 :         __le32 buf[2];
     973                 :          0 :         u32 items;
     974                 :          0 :         int rc;
     975                 :            : 
     976         [ #  # ]:          0 :         rc = next_entry(buf, fp, sizeof(u32));
     977                 :          0 :         if (rc)
     978                 :          0 :                 goto out;
     979                 :            : 
     980                 :          0 :         rc = -EINVAL;
     981                 :          0 :         items = le32_to_cpu(buf[0]);
     982         [ #  # ]:          0 :         if (items > ARRAY_SIZE(buf)) {
     983                 :          0 :                 pr_err("SELinux: mls:  range overflow\n");
     984                 :          0 :                 goto out;
     985                 :            :         }
     986                 :            : 
     987         [ #  # ]:          0 :         rc = next_entry(buf, fp, sizeof(u32) * items);
     988                 :          0 :         if (rc) {
     989                 :          0 :                 pr_err("SELinux: mls:  truncated range\n");
     990                 :          0 :                 goto out;
     991                 :            :         }
     992                 :            : 
     993                 :          0 :         r->level[0].sens = le32_to_cpu(buf[0]);
     994         [ #  # ]:          0 :         if (items > 1)
     995                 :          0 :                 r->level[1].sens = le32_to_cpu(buf[1]);
     996                 :            :         else
     997                 :          0 :                 r->level[1].sens = r->level[0].sens;
     998                 :            : 
     999                 :          0 :         rc = ebitmap_read(&r->level[0].cat, fp);
    1000         [ #  # ]:          0 :         if (rc) {
    1001                 :          0 :                 pr_err("SELinux: mls:  error reading low categories\n");
    1002                 :          0 :                 goto out;
    1003                 :            :         }
    1004         [ #  # ]:          0 :         if (items > 1) {
    1005                 :          0 :                 rc = ebitmap_read(&r->level[1].cat, fp);
    1006         [ #  # ]:          0 :                 if (rc) {
    1007                 :          0 :                         pr_err("SELinux: mls:  error reading high categories\n");
    1008                 :          0 :                         goto bad_high;
    1009                 :            :                 }
    1010                 :            :         } else {
    1011                 :          0 :                 rc = ebitmap_cpy(&r->level[1].cat, &r->level[0].cat);
    1012         [ #  # ]:          0 :                 if (rc) {
    1013                 :          0 :                         pr_err("SELinux: mls:  out of memory\n");
    1014                 :          0 :                         goto bad_high;
    1015                 :            :                 }
    1016                 :            :         }
    1017                 :            : 
    1018                 :            :         return 0;
    1019                 :          0 : bad_high:
    1020                 :          0 :         ebitmap_destroy(&r->level[0].cat);
    1021                 :            : out:
    1022                 :            :         return rc;
    1023                 :            : }
    1024                 :            : 
    1025                 :            : /*
    1026                 :            :  * Read and validate a security context structure
    1027                 :            :  * from a policydb binary representation file.
    1028                 :            :  */
    1029                 :          0 : static int context_read_and_validate(struct context *c,
    1030                 :            :                                      struct policydb *p,
    1031                 :            :                                      void *fp)
    1032                 :            : {
    1033                 :          0 :         __le32 buf[3];
    1034                 :          0 :         int rc;
    1035                 :            : 
    1036         [ #  # ]:          0 :         rc = next_entry(buf, fp, sizeof buf);
    1037                 :          0 :         if (rc) {
    1038                 :          0 :                 pr_err("SELinux: context truncated\n");
    1039                 :          0 :                 goto out;
    1040                 :            :         }
    1041                 :          0 :         c->user = le32_to_cpu(buf[0]);
    1042                 :          0 :         c->role = le32_to_cpu(buf[1]);
    1043                 :          0 :         c->type = le32_to_cpu(buf[2]);
    1044         [ #  # ]:          0 :         if (p->policyvers >= POLICYDB_VERSION_MLS) {
    1045                 :          0 :                 rc = mls_read_range_helper(&c->range, fp);
    1046         [ #  # ]:          0 :                 if (rc) {
    1047                 :          0 :                         pr_err("SELinux: error reading MLS range of context\n");
    1048                 :          0 :                         goto out;
    1049                 :            :                 }
    1050                 :            :         }
    1051                 :            : 
    1052                 :          0 :         rc = -EINVAL;
    1053         [ #  # ]:          0 :         if (!policydb_context_isvalid(p, c)) {
    1054                 :          0 :                 pr_err("SELinux:  invalid security context\n");
    1055                 :          0 :                 context_destroy(c);
    1056                 :          0 :                 goto out;
    1057                 :            :         }
    1058                 :            :         rc = 0;
    1059                 :          0 : out:
    1060                 :          0 :         return rc;
    1061                 :            : }
    1062                 :            : 
    1063                 :            : /*
    1064                 :            :  * The following *_read functions are used to
    1065                 :            :  * read the symbol data from a policy database
    1066                 :            :  * binary representation file.
    1067                 :            :  */
    1068                 :            : 
    1069                 :          0 : static int str_read(char **strp, gfp_t flags, void *fp, u32 len)
    1070                 :            : {
    1071                 :          0 :         int rc;
    1072                 :          0 :         char *str;
    1073                 :            : 
    1074         [ #  # ]:          0 :         if ((len == 0) || (len == (u32)-1))
    1075                 :            :                 return -EINVAL;
    1076                 :            : 
    1077         [ #  # ]:          0 :         str = kmalloc(len + 1, flags | __GFP_NOWARN);
    1078         [ #  # ]:          0 :         if (!str)
    1079                 :            :                 return -ENOMEM;
    1080                 :            : 
    1081                 :            :         /* it's expected the caller should free the str */
    1082                 :          0 :         *strp = str;
    1083                 :            : 
    1084         [ #  # ]:          0 :         rc = next_entry(str, fp, len);
    1085                 :          0 :         if (rc)
    1086                 :            :                 return rc;
    1087                 :            : 
    1088                 :          0 :         str[len] = '\0';
    1089                 :          0 :         return 0;
    1090                 :            : }
    1091                 :            : 
    1092                 :            : static int perm_read(struct policydb *p, struct hashtab *h, void *fp)
    1093                 :            : {
    1094                 :            :         char *key = NULL;
    1095                 :            :         struct perm_datum *perdatum;
    1096                 :            :         int rc;
    1097                 :            :         __le32 buf[2];
    1098                 :            :         u32 len;
    1099                 :            : 
    1100                 :            :         perdatum = kzalloc(sizeof(*perdatum), GFP_KERNEL);
    1101                 :            :         if (!perdatum)
    1102                 :            :                 return -ENOMEM;
    1103                 :            : 
    1104                 :            :         rc = next_entry(buf, fp, sizeof buf);
    1105                 :            :         if (rc)
    1106                 :            :                 goto bad;
    1107                 :            : 
    1108                 :            :         len = le32_to_cpu(buf[0]);
    1109                 :            :         perdatum->value = le32_to_cpu(buf[1]);
    1110                 :            : 
    1111                 :            :         rc = str_read(&key, GFP_KERNEL, fp, len);
    1112                 :            :         if (rc)
    1113                 :            :                 goto bad;
    1114                 :            : 
    1115                 :            :         rc = hashtab_insert(h, key, perdatum);
    1116                 :            :         if (rc)
    1117                 :            :                 goto bad;
    1118                 :            : 
    1119                 :            :         return 0;
    1120                 :            : bad:
    1121                 :            :         perm_destroy(key, perdatum, NULL);
    1122                 :            :         return rc;
    1123                 :            : }
    1124                 :            : 
    1125                 :          0 : static int common_read(struct policydb *p, struct hashtab *h, void *fp)
    1126                 :            : {
    1127                 :          0 :         char *key = NULL;
    1128                 :          0 :         struct common_datum *comdatum;
    1129                 :          0 :         __le32 buf[4];
    1130                 :          0 :         u32 len, nel;
    1131                 :          0 :         int i, rc;
    1132                 :            : 
    1133                 :          0 :         comdatum = kzalloc(sizeof(*comdatum), GFP_KERNEL);
    1134         [ #  # ]:          0 :         if (!comdatum)
    1135                 :            :                 return -ENOMEM;
    1136                 :            : 
    1137         [ #  # ]:          0 :         rc = next_entry(buf, fp, sizeof buf);
    1138                 :          0 :         if (rc)
    1139                 :          0 :                 goto bad;
    1140                 :            : 
    1141                 :          0 :         len = le32_to_cpu(buf[0]);
    1142                 :          0 :         comdatum->value = le32_to_cpu(buf[1]);
    1143                 :            : 
    1144                 :          0 :         rc = symtab_init(&comdatum->permissions, PERM_SYMTAB_SIZE);
    1145         [ #  # ]:          0 :         if (rc)
    1146                 :          0 :                 goto bad;
    1147                 :          0 :         comdatum->permissions.nprim = le32_to_cpu(buf[2]);
    1148                 :          0 :         nel = le32_to_cpu(buf[3]);
    1149                 :            : 
    1150                 :          0 :         rc = str_read(&key, GFP_KERNEL, fp, len);
    1151         [ #  # ]:          0 :         if (rc)
    1152                 :          0 :                 goto bad;
    1153                 :            : 
    1154         [ #  # ]:          0 :         for (i = 0; i < nel; i++) {
    1155                 :          0 :                 rc = perm_read(p, comdatum->permissions.table, fp);
    1156         [ #  # ]:          0 :                 if (rc)
    1157                 :          0 :                         goto bad;
    1158                 :            :         }
    1159                 :            : 
    1160                 :          0 :         rc = hashtab_insert(h, key, comdatum);
    1161         [ #  # ]:          0 :         if (rc)
    1162                 :          0 :                 goto bad;
    1163                 :            :         return 0;
    1164                 :          0 : bad:
    1165                 :          0 :         common_destroy(key, comdatum, NULL);
    1166                 :          0 :         return rc;
    1167                 :            : }
    1168                 :            : 
    1169                 :          0 : static void type_set_init(struct type_set *t)
    1170                 :            : {
    1171                 :          0 :         ebitmap_init(&t->types);
    1172                 :          0 :         ebitmap_init(&t->negset);
    1173                 :          0 : }
    1174                 :            : 
    1175                 :          0 : static int type_set_read(struct type_set *t, void *fp)
    1176                 :            : {
    1177                 :          0 :         __le32 buf[1];
    1178                 :          0 :         int rc;
    1179                 :            : 
    1180         [ #  # ]:          0 :         if (ebitmap_read(&t->types, fp))
    1181                 :            :                 return -EINVAL;
    1182         [ #  # ]:          0 :         if (ebitmap_read(&t->negset, fp))
    1183                 :            :                 return -EINVAL;
    1184                 :            : 
    1185         [ #  # ]:          0 :         rc = next_entry(buf, fp, sizeof(u32));
    1186                 :          0 :         if (rc < 0)
    1187                 :            :                 return -EINVAL;
    1188                 :          0 :         t->flags = le32_to_cpu(buf[0]);
    1189                 :            : 
    1190                 :          0 :         return 0;
    1191                 :            : }
    1192                 :            : 
    1193                 :            : 
    1194                 :            : static int read_cons_helper(struct policydb *p,
    1195                 :            :                                 struct constraint_node **nodep,
    1196                 :            :                                 int ncons, int allowxtarget, void *fp)
    1197                 :            : {
    1198                 :            :         struct constraint_node *c, *lc;
    1199                 :            :         struct constraint_expr *e, *le;
    1200                 :            :         __le32 buf[3];
    1201                 :            :         u32 nexpr;
    1202                 :            :         int rc, i, j, depth;
    1203                 :            : 
    1204                 :            :         lc = NULL;
    1205                 :            :         for (i = 0; i < ncons; i++) {
    1206                 :            :                 c = kzalloc(sizeof(*c), GFP_KERNEL);
    1207                 :            :                 if (!c)
    1208                 :            :                         return -ENOMEM;
    1209                 :            : 
    1210                 :            :                 if (lc)
    1211                 :            :                         lc->next = c;
    1212                 :            :                 else
    1213                 :            :                         *nodep = c;
    1214                 :            : 
    1215                 :            :                 rc = next_entry(buf, fp, (sizeof(u32) * 2));
    1216                 :            :                 if (rc)
    1217                 :            :                         return rc;
    1218                 :            :                 c->permissions = le32_to_cpu(buf[0]);
    1219                 :            :                 nexpr = le32_to_cpu(buf[1]);
    1220                 :            :                 le = NULL;
    1221                 :            :                 depth = -1;
    1222                 :            :                 for (j = 0; j < nexpr; j++) {
    1223                 :            :                         e = kzalloc(sizeof(*e), GFP_KERNEL);
    1224                 :            :                         if (!e)
    1225                 :            :                                 return -ENOMEM;
    1226                 :            : 
    1227                 :            :                         if (le)
    1228                 :            :                                 le->next = e;
    1229                 :            :                         else
    1230                 :            :                                 c->expr = e;
    1231                 :            : 
    1232                 :            :                         rc = next_entry(buf, fp, (sizeof(u32) * 3));
    1233                 :            :                         if (rc)
    1234                 :            :                                 return rc;
    1235                 :            :                         e->expr_type = le32_to_cpu(buf[0]);
    1236                 :            :                         e->attr = le32_to_cpu(buf[1]);
    1237                 :            :                         e->op = le32_to_cpu(buf[2]);
    1238                 :            : 
    1239                 :            :                         switch (e->expr_type) {
    1240                 :            :                         case CEXPR_NOT:
    1241                 :            :                                 if (depth < 0)
    1242                 :            :                                         return -EINVAL;
    1243                 :            :                                 break;
    1244                 :            :                         case CEXPR_AND:
    1245                 :            :                         case CEXPR_OR:
    1246                 :            :                                 if (depth < 1)
    1247                 :            :                                         return -EINVAL;
    1248                 :            :                                 depth--;
    1249                 :            :                                 break;
    1250                 :            :                         case CEXPR_ATTR:
    1251                 :            :                                 if (depth == (CEXPR_MAXDEPTH - 1))
    1252                 :            :                                         return -EINVAL;
    1253                 :            :                                 depth++;
    1254                 :            :                                 break;
    1255                 :            :                         case CEXPR_NAMES:
    1256                 :            :                                 if (!allowxtarget && (e->attr & CEXPR_XTARGET))
    1257                 :            :                                         return -EINVAL;
    1258                 :            :                                 if (depth == (CEXPR_MAXDEPTH - 1))
    1259                 :            :                                         return -EINVAL;
    1260                 :            :                                 depth++;
    1261                 :            :                                 rc = ebitmap_read(&e->names, fp);
    1262                 :            :                                 if (rc)
    1263                 :            :                                         return rc;
    1264                 :            :                                 if (p->policyvers >=
    1265                 :            :                                         POLICYDB_VERSION_CONSTRAINT_NAMES) {
    1266                 :            :                                                 e->type_names = kzalloc(sizeof
    1267                 :            :                                                 (*e->type_names),
    1268                 :            :                                                 GFP_KERNEL);
    1269                 :            :                                         if (!e->type_names)
    1270                 :            :                                                 return -ENOMEM;
    1271                 :            :                                         type_set_init(e->type_names);
    1272                 :            :                                         rc = type_set_read(e->type_names, fp);
    1273                 :            :                                         if (rc)
    1274                 :            :                                                 return rc;
    1275                 :            :                                 }
    1276                 :            :                                 break;
    1277                 :            :                         default:
    1278                 :            :                                 return -EINVAL;
    1279                 :            :                         }
    1280                 :            :                         le = e;
    1281                 :            :                 }
    1282                 :            :                 if (depth != 0)
    1283                 :            :                         return -EINVAL;
    1284                 :            :                 lc = c;
    1285                 :            :         }
    1286                 :            : 
    1287                 :            :         return 0;
    1288                 :            : }
    1289                 :            : 
    1290                 :          0 : static int class_read(struct policydb *p, struct hashtab *h, void *fp)
    1291                 :            : {
    1292                 :          0 :         char *key = NULL;
    1293                 :          0 :         struct class_datum *cladatum;
    1294                 :          0 :         __le32 buf[6];
    1295                 :          0 :         u32 len, len2, ncons, nel;
    1296                 :          0 :         int i, rc;
    1297                 :            : 
    1298                 :          0 :         cladatum = kzalloc(sizeof(*cladatum), GFP_KERNEL);
    1299         [ #  # ]:          0 :         if (!cladatum)
    1300                 :            :                 return -ENOMEM;
    1301                 :            : 
    1302         [ #  # ]:          0 :         rc = next_entry(buf, fp, sizeof(u32)*6);
    1303                 :          0 :         if (rc)
    1304                 :          0 :                 goto bad;
    1305                 :            : 
    1306                 :          0 :         len = le32_to_cpu(buf[0]);
    1307                 :          0 :         len2 = le32_to_cpu(buf[1]);
    1308                 :          0 :         cladatum->value = le32_to_cpu(buf[2]);
    1309                 :            : 
    1310                 :          0 :         rc = symtab_init(&cladatum->permissions, PERM_SYMTAB_SIZE);
    1311         [ #  # ]:          0 :         if (rc)
    1312                 :          0 :                 goto bad;
    1313                 :          0 :         cladatum->permissions.nprim = le32_to_cpu(buf[3]);
    1314                 :          0 :         nel = le32_to_cpu(buf[4]);
    1315                 :            : 
    1316                 :          0 :         ncons = le32_to_cpu(buf[5]);
    1317                 :            : 
    1318                 :          0 :         rc = str_read(&key, GFP_KERNEL, fp, len);
    1319         [ #  # ]:          0 :         if (rc)
    1320                 :          0 :                 goto bad;
    1321                 :            : 
    1322         [ #  # ]:          0 :         if (len2) {
    1323                 :          0 :                 rc = str_read(&cladatum->comkey, GFP_KERNEL, fp, len2);
    1324         [ #  # ]:          0 :                 if (rc)
    1325                 :          0 :                         goto bad;
    1326                 :            : 
    1327                 :          0 :                 rc = -EINVAL;
    1328                 :          0 :                 cladatum->comdatum = hashtab_search(p->p_commons.table, cladatum->comkey);
    1329         [ #  # ]:          0 :                 if (!cladatum->comdatum) {
    1330                 :          0 :                         pr_err("SELinux:  unknown common %s\n",
    1331                 :            :                                cladatum->comkey);
    1332                 :          0 :                         goto bad;
    1333                 :            :                 }
    1334                 :            :         }
    1335         [ #  # ]:          0 :         for (i = 0; i < nel; i++) {
    1336                 :          0 :                 rc = perm_read(p, cladatum->permissions.table, fp);
    1337         [ #  # ]:          0 :                 if (rc)
    1338                 :          0 :                         goto bad;
    1339                 :            :         }
    1340                 :            : 
    1341                 :          0 :         rc = read_cons_helper(p, &cladatum->constraints, ncons, 0, fp);
    1342         [ #  # ]:          0 :         if (rc)
    1343                 :          0 :                 goto bad;
    1344                 :            : 
    1345         [ #  # ]:          0 :         if (p->policyvers >= POLICYDB_VERSION_VALIDATETRANS) {
    1346                 :            :                 /* grab the validatetrans rules */
    1347         [ #  # ]:          0 :                 rc = next_entry(buf, fp, sizeof(u32));
    1348                 :          0 :                 if (rc)
    1349                 :          0 :                         goto bad;
    1350                 :          0 :                 ncons = le32_to_cpu(buf[0]);
    1351                 :          0 :                 rc = read_cons_helper(p, &cladatum->validatetrans,
    1352                 :            :                                 ncons, 1, fp);
    1353         [ #  # ]:          0 :                 if (rc)
    1354                 :          0 :                         goto bad;
    1355                 :            :         }
    1356                 :            : 
    1357         [ #  # ]:          0 :         if (p->policyvers >= POLICYDB_VERSION_NEW_OBJECT_DEFAULTS) {
    1358         [ #  # ]:          0 :                 rc = next_entry(buf, fp, sizeof(u32) * 3);
    1359                 :          0 :                 if (rc)
    1360                 :          0 :                         goto bad;
    1361                 :            : 
    1362                 :          0 :                 cladatum->default_user = le32_to_cpu(buf[0]);
    1363                 :          0 :                 cladatum->default_role = le32_to_cpu(buf[1]);
    1364                 :          0 :                 cladatum->default_range = le32_to_cpu(buf[2]);
    1365                 :            :         }
    1366                 :            : 
    1367         [ #  # ]:          0 :         if (p->policyvers >= POLICYDB_VERSION_DEFAULT_TYPE) {
    1368         [ #  # ]:          0 :                 rc = next_entry(buf, fp, sizeof(u32) * 1);
    1369                 :          0 :                 if (rc)
    1370                 :          0 :                         goto bad;
    1371                 :          0 :                 cladatum->default_type = le32_to_cpu(buf[0]);
    1372                 :            :         }
    1373                 :            : 
    1374                 :          0 :         rc = hashtab_insert(h, key, cladatum);
    1375         [ #  # ]:          0 :         if (rc)
    1376                 :          0 :                 goto bad;
    1377                 :            : 
    1378                 :            :         return 0;
    1379                 :          0 : bad:
    1380                 :          0 :         cls_destroy(key, cladatum, NULL);
    1381                 :          0 :         return rc;
    1382                 :            : }
    1383                 :            : 
    1384                 :          0 : static int role_read(struct policydb *p, struct hashtab *h, void *fp)
    1385                 :            : {
    1386                 :          0 :         char *key = NULL;
    1387                 :          0 :         struct role_datum *role;
    1388                 :          0 :         int rc, to_read = 2;
    1389                 :          0 :         __le32 buf[3];
    1390                 :          0 :         u32 len;
    1391                 :            : 
    1392                 :          0 :         role = kzalloc(sizeof(*role), GFP_KERNEL);
    1393         [ #  # ]:          0 :         if (!role)
    1394                 :            :                 return -ENOMEM;
    1395                 :            : 
    1396         [ #  # ]:          0 :         if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
    1397                 :          0 :                 to_read = 3;
    1398                 :            : 
    1399         [ #  # ]:          0 :         rc = next_entry(buf, fp, sizeof(buf[0]) * to_read);
    1400                 :          0 :         if (rc)
    1401                 :          0 :                 goto bad;
    1402                 :            : 
    1403                 :          0 :         len = le32_to_cpu(buf[0]);
    1404                 :          0 :         role->value = le32_to_cpu(buf[1]);
    1405         [ #  # ]:          0 :         if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
    1406                 :          0 :                 role->bounds = le32_to_cpu(buf[2]);
    1407                 :            : 
    1408                 :          0 :         rc = str_read(&key, GFP_KERNEL, fp, len);
    1409         [ #  # ]:          0 :         if (rc)
    1410                 :          0 :                 goto bad;
    1411                 :            : 
    1412                 :          0 :         rc = ebitmap_read(&role->dominates, fp);
    1413         [ #  # ]:          0 :         if (rc)
    1414                 :          0 :                 goto bad;
    1415                 :            : 
    1416                 :          0 :         rc = ebitmap_read(&role->types, fp);
    1417         [ #  # ]:          0 :         if (rc)
    1418                 :          0 :                 goto bad;
    1419                 :            : 
    1420         [ #  # ]:          0 :         if (strcmp(key, OBJECT_R) == 0) {
    1421                 :          0 :                 rc = -EINVAL;
    1422         [ #  # ]:          0 :                 if (role->value != OBJECT_R_VAL) {
    1423                 :          0 :                         pr_err("SELinux: Role %s has wrong value %d\n",
    1424                 :            :                                OBJECT_R, role->value);
    1425                 :          0 :                         goto bad;
    1426                 :            :                 }
    1427                 :          0 :                 rc = 0;
    1428                 :          0 :                 goto bad;
    1429                 :            :         }
    1430                 :            : 
    1431                 :          0 :         rc = hashtab_insert(h, key, role);
    1432         [ #  # ]:          0 :         if (rc)
    1433                 :          0 :                 goto bad;
    1434                 :            :         return 0;
    1435                 :          0 : bad:
    1436                 :          0 :         role_destroy(key, role, NULL);
    1437                 :          0 :         return rc;
    1438                 :            : }
    1439                 :            : 
    1440                 :          0 : static int type_read(struct policydb *p, struct hashtab *h, void *fp)
    1441                 :            : {
    1442                 :          0 :         char *key = NULL;
    1443                 :          0 :         struct type_datum *typdatum;
    1444                 :          0 :         int rc, to_read = 3;
    1445                 :          0 :         __le32 buf[4];
    1446                 :          0 :         u32 len;
    1447                 :            : 
    1448                 :          0 :         typdatum = kzalloc(sizeof(*typdatum), GFP_KERNEL);
    1449         [ #  # ]:          0 :         if (!typdatum)
    1450                 :            :                 return -ENOMEM;
    1451                 :            : 
    1452         [ #  # ]:          0 :         if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
    1453                 :          0 :                 to_read = 4;
    1454                 :            : 
    1455         [ #  # ]:          0 :         rc = next_entry(buf, fp, sizeof(buf[0]) * to_read);
    1456                 :          0 :         if (rc)
    1457                 :          0 :                 goto bad;
    1458                 :            : 
    1459                 :          0 :         len = le32_to_cpu(buf[0]);
    1460                 :          0 :         typdatum->value = le32_to_cpu(buf[1]);
    1461         [ #  # ]:          0 :         if (p->policyvers >= POLICYDB_VERSION_BOUNDARY) {
    1462                 :          0 :                 u32 prop = le32_to_cpu(buf[2]);
    1463                 :            : 
    1464         [ #  # ]:          0 :                 if (prop & TYPEDATUM_PROPERTY_PRIMARY)
    1465                 :          0 :                         typdatum->primary = 1;
    1466         [ #  # ]:          0 :                 if (prop & TYPEDATUM_PROPERTY_ATTRIBUTE)
    1467                 :          0 :                         typdatum->attribute = 1;
    1468                 :            : 
    1469                 :          0 :                 typdatum->bounds = le32_to_cpu(buf[3]);
    1470                 :            :         } else {
    1471                 :          0 :                 typdatum->primary = le32_to_cpu(buf[2]);
    1472                 :            :         }
    1473                 :            : 
    1474                 :          0 :         rc = str_read(&key, GFP_KERNEL, fp, len);
    1475         [ #  # ]:          0 :         if (rc)
    1476                 :          0 :                 goto bad;
    1477                 :            : 
    1478                 :          0 :         rc = hashtab_insert(h, key, typdatum);
    1479         [ #  # ]:          0 :         if (rc)
    1480                 :          0 :                 goto bad;
    1481                 :            :         return 0;
    1482                 :          0 : bad:
    1483                 :          0 :         type_destroy(key, typdatum, NULL);
    1484                 :          0 :         return rc;
    1485                 :            : }
    1486                 :            : 
    1487                 :            : 
    1488                 :            : /*
    1489                 :            :  * Read a MLS level structure from a policydb binary
    1490                 :            :  * representation file.
    1491                 :            :  */
    1492                 :          0 : static int mls_read_level(struct mls_level *lp, void *fp)
    1493                 :            : {
    1494                 :          0 :         __le32 buf[1];
    1495                 :          0 :         int rc;
    1496                 :            : 
    1497                 :          0 :         memset(lp, 0, sizeof(*lp));
    1498                 :            : 
    1499         [ #  # ]:          0 :         rc = next_entry(buf, fp, sizeof buf);
    1500                 :          0 :         if (rc) {
    1501                 :          0 :                 pr_err("SELinux: mls: truncated level\n");
    1502                 :          0 :                 return rc;
    1503                 :            :         }
    1504                 :          0 :         lp->sens = le32_to_cpu(buf[0]);
    1505                 :            : 
    1506                 :          0 :         rc = ebitmap_read(&lp->cat, fp);
    1507         [ #  # ]:          0 :         if (rc) {
    1508                 :          0 :                 pr_err("SELinux: mls:  error reading level categories\n");
    1509                 :          0 :                 return rc;
    1510                 :            :         }
    1511                 :            :         return 0;
    1512                 :            : }
    1513                 :            : 
    1514                 :          0 : static int user_read(struct policydb *p, struct hashtab *h, void *fp)
    1515                 :            : {
    1516                 :          0 :         char *key = NULL;
    1517                 :          0 :         struct user_datum *usrdatum;
    1518                 :          0 :         int rc, to_read = 2;
    1519                 :          0 :         __le32 buf[3];
    1520                 :          0 :         u32 len;
    1521                 :            : 
    1522                 :          0 :         usrdatum = kzalloc(sizeof(*usrdatum), GFP_KERNEL);
    1523         [ #  # ]:          0 :         if (!usrdatum)
    1524                 :            :                 return -ENOMEM;
    1525                 :            : 
    1526         [ #  # ]:          0 :         if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
    1527                 :          0 :                 to_read = 3;
    1528                 :            : 
    1529         [ #  # ]:          0 :         rc = next_entry(buf, fp, sizeof(buf[0]) * to_read);
    1530                 :          0 :         if (rc)
    1531                 :          0 :                 goto bad;
    1532                 :            : 
    1533                 :          0 :         len = le32_to_cpu(buf[0]);
    1534                 :          0 :         usrdatum->value = le32_to_cpu(buf[1]);
    1535         [ #  # ]:          0 :         if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
    1536                 :          0 :                 usrdatum->bounds = le32_to_cpu(buf[2]);
    1537                 :            : 
    1538                 :          0 :         rc = str_read(&key, GFP_KERNEL, fp, len);
    1539         [ #  # ]:          0 :         if (rc)
    1540                 :          0 :                 goto bad;
    1541                 :            : 
    1542                 :          0 :         rc = ebitmap_read(&usrdatum->roles, fp);
    1543         [ #  # ]:          0 :         if (rc)
    1544                 :          0 :                 goto bad;
    1545                 :            : 
    1546         [ #  # ]:          0 :         if (p->policyvers >= POLICYDB_VERSION_MLS) {
    1547                 :          0 :                 rc = mls_read_range_helper(&usrdatum->range, fp);
    1548         [ #  # ]:          0 :                 if (rc)
    1549                 :          0 :                         goto bad;
    1550                 :          0 :                 rc = mls_read_level(&usrdatum->dfltlevel, fp);
    1551         [ #  # ]:          0 :                 if (rc)
    1552                 :          0 :                         goto bad;
    1553                 :            :         }
    1554                 :            : 
    1555                 :          0 :         rc = hashtab_insert(h, key, usrdatum);
    1556         [ #  # ]:          0 :         if (rc)
    1557                 :          0 :                 goto bad;
    1558                 :            :         return 0;
    1559                 :          0 : bad:
    1560                 :          0 :         user_destroy(key, usrdatum, NULL);
    1561                 :          0 :         return rc;
    1562                 :            : }
    1563                 :            : 
    1564                 :          0 : static int sens_read(struct policydb *p, struct hashtab *h, void *fp)
    1565                 :            : {
    1566                 :          0 :         char *key = NULL;
    1567                 :          0 :         struct level_datum *levdatum;
    1568                 :          0 :         int rc;
    1569                 :          0 :         __le32 buf[2];
    1570                 :          0 :         u32 len;
    1571                 :            : 
    1572                 :          0 :         levdatum = kzalloc(sizeof(*levdatum), GFP_ATOMIC);
    1573         [ #  # ]:          0 :         if (!levdatum)
    1574                 :            :                 return -ENOMEM;
    1575                 :            : 
    1576         [ #  # ]:          0 :         rc = next_entry(buf, fp, sizeof buf);
    1577                 :          0 :         if (rc)
    1578                 :          0 :                 goto bad;
    1579                 :            : 
    1580                 :          0 :         len = le32_to_cpu(buf[0]);
    1581                 :          0 :         levdatum->isalias = le32_to_cpu(buf[1]);
    1582                 :            : 
    1583                 :          0 :         rc = str_read(&key, GFP_ATOMIC, fp, len);
    1584         [ #  # ]:          0 :         if (rc)
    1585                 :          0 :                 goto bad;
    1586                 :            : 
    1587                 :          0 :         rc = -ENOMEM;
    1588                 :          0 :         levdatum->level = kmalloc(sizeof(*levdatum->level), GFP_ATOMIC);
    1589         [ #  # ]:          0 :         if (!levdatum->level)
    1590                 :          0 :                 goto bad;
    1591                 :            : 
    1592                 :          0 :         rc = mls_read_level(levdatum->level, fp);
    1593         [ #  # ]:          0 :         if (rc)
    1594                 :          0 :                 goto bad;
    1595                 :            : 
    1596                 :          0 :         rc = hashtab_insert(h, key, levdatum);
    1597         [ #  # ]:          0 :         if (rc)
    1598                 :          0 :                 goto bad;
    1599                 :            :         return 0;
    1600                 :          0 : bad:
    1601                 :          0 :         sens_destroy(key, levdatum, NULL);
    1602                 :          0 :         return rc;
    1603                 :            : }
    1604                 :            : 
    1605                 :          0 : static int cat_read(struct policydb *p, struct hashtab *h, void *fp)
    1606                 :            : {
    1607                 :          0 :         char *key = NULL;
    1608                 :          0 :         struct cat_datum *catdatum;
    1609                 :          0 :         int rc;
    1610                 :          0 :         __le32 buf[3];
    1611                 :          0 :         u32 len;
    1612                 :            : 
    1613                 :          0 :         catdatum = kzalloc(sizeof(*catdatum), GFP_ATOMIC);
    1614         [ #  # ]:          0 :         if (!catdatum)
    1615                 :            :                 return -ENOMEM;
    1616                 :            : 
    1617         [ #  # ]:          0 :         rc = next_entry(buf, fp, sizeof buf);
    1618                 :          0 :         if (rc)
    1619                 :          0 :                 goto bad;
    1620                 :            : 
    1621                 :          0 :         len = le32_to_cpu(buf[0]);
    1622                 :          0 :         catdatum->value = le32_to_cpu(buf[1]);
    1623                 :          0 :         catdatum->isalias = le32_to_cpu(buf[2]);
    1624                 :            : 
    1625                 :          0 :         rc = str_read(&key, GFP_ATOMIC, fp, len);
    1626         [ #  # ]:          0 :         if (rc)
    1627                 :          0 :                 goto bad;
    1628                 :            : 
    1629                 :          0 :         rc = hashtab_insert(h, key, catdatum);
    1630         [ #  # ]:          0 :         if (rc)
    1631                 :          0 :                 goto bad;
    1632                 :            :         return 0;
    1633                 :          0 : bad:
    1634                 :          0 :         cat_destroy(key, catdatum, NULL);
    1635                 :          0 :         return rc;
    1636                 :            : }
    1637                 :            : 
    1638                 :            : static int (*read_f[SYM_NUM]) (struct policydb *p, struct hashtab *h, void *fp) =
    1639                 :            : {
    1640                 :            :         common_read,
    1641                 :            :         class_read,
    1642                 :            :         role_read,
    1643                 :            :         type_read,
    1644                 :            :         user_read,
    1645                 :            :         cond_read_bool,
    1646                 :            :         sens_read,
    1647                 :            :         cat_read,
    1648                 :            : };
    1649                 :            : 
    1650                 :          0 : static int user_bounds_sanity_check(void *key, void *datum, void *datap)
    1651                 :            : {
    1652                 :          0 :         struct user_datum *upper, *user;
    1653                 :          0 :         struct policydb *p = datap;
    1654                 :          0 :         int depth = 0;
    1655                 :            : 
    1656                 :          0 :         upper = user = datum;
    1657         [ #  # ]:          0 :         while (upper->bounds) {
    1658                 :          0 :                 struct ebitmap_node *node;
    1659                 :          0 :                 unsigned long bit;
    1660                 :            : 
    1661         [ #  # ]:          0 :                 if (++depth == POLICYDB_BOUNDS_MAXDEPTH) {
    1662                 :          0 :                         pr_err("SELinux: user %s: "
    1663                 :            :                                "too deep or looped boundary",
    1664                 :            :                                (char *) key);
    1665                 :          0 :                         return -EINVAL;
    1666                 :            :                 }
    1667                 :            : 
    1668                 :          0 :                 upper = p->user_val_to_struct[upper->bounds - 1];
    1669         [ #  # ]:          0 :                 ebitmap_for_each_positive_bit(&user->roles, node, bit) {
    1670         [ #  # ]:          0 :                         if (ebitmap_get_bit(&upper->roles, bit))
    1671                 :          0 :                                 continue;
    1672                 :            : 
    1673                 :          0 :                         pr_err("SELinux: boundary violated policy: "
    1674                 :            :                                "user=%s role=%s bounds=%s\n",
    1675                 :            :                                sym_name(p, SYM_USERS, user->value - 1),
    1676                 :            :                                sym_name(p, SYM_ROLES, bit),
    1677                 :            :                                sym_name(p, SYM_USERS, upper->value - 1));
    1678                 :            : 
    1679                 :          0 :                         return -EINVAL;
    1680                 :            :                 }
    1681                 :            :         }
    1682                 :            : 
    1683                 :            :         return 0;
    1684                 :            : }
    1685                 :            : 
    1686                 :          0 : static int role_bounds_sanity_check(void *key, void *datum, void *datap)
    1687                 :            : {
    1688                 :          0 :         struct role_datum *upper, *role;
    1689                 :          0 :         struct policydb *p = datap;
    1690                 :          0 :         int depth = 0;
    1691                 :            : 
    1692                 :          0 :         upper = role = datum;
    1693         [ #  # ]:          0 :         while (upper->bounds) {
    1694                 :          0 :                 struct ebitmap_node *node;
    1695                 :          0 :                 unsigned long bit;
    1696                 :            : 
    1697         [ #  # ]:          0 :                 if (++depth == POLICYDB_BOUNDS_MAXDEPTH) {
    1698                 :          0 :                         pr_err("SELinux: role %s: "
    1699                 :            :                                "too deep or looped bounds\n",
    1700                 :            :                                (char *) key);
    1701                 :          0 :                         return -EINVAL;
    1702                 :            :                 }
    1703                 :            : 
    1704                 :          0 :                 upper = p->role_val_to_struct[upper->bounds - 1];
    1705         [ #  # ]:          0 :                 ebitmap_for_each_positive_bit(&role->types, node, bit) {
    1706         [ #  # ]:          0 :                         if (ebitmap_get_bit(&upper->types, bit))
    1707                 :          0 :                                 continue;
    1708                 :            : 
    1709                 :          0 :                         pr_err("SELinux: boundary violated policy: "
    1710                 :            :                                "role=%s type=%s bounds=%s\n",
    1711                 :            :                                sym_name(p, SYM_ROLES, role->value - 1),
    1712                 :            :                                sym_name(p, SYM_TYPES, bit),
    1713                 :            :                                sym_name(p, SYM_ROLES, upper->value - 1));
    1714                 :            : 
    1715                 :          0 :                         return -EINVAL;
    1716                 :            :                 }
    1717                 :            :         }
    1718                 :            : 
    1719                 :            :         return 0;
    1720                 :            : }
    1721                 :            : 
    1722                 :          0 : static int type_bounds_sanity_check(void *key, void *datum, void *datap)
    1723                 :            : {
    1724                 :          0 :         struct type_datum *upper;
    1725                 :          0 :         struct policydb *p = datap;
    1726                 :          0 :         int depth = 0;
    1727                 :            : 
    1728                 :          0 :         upper = datum;
    1729         [ #  # ]:          0 :         while (upper->bounds) {
    1730         [ #  # ]:          0 :                 if (++depth == POLICYDB_BOUNDS_MAXDEPTH) {
    1731                 :          0 :                         pr_err("SELinux: type %s: "
    1732                 :            :                                "too deep or looped boundary\n",
    1733                 :            :                                (char *) key);
    1734                 :          0 :                         return -EINVAL;
    1735                 :            :                 }
    1736                 :            : 
    1737                 :          0 :                 upper = p->type_val_to_struct[upper->bounds - 1];
    1738         [ #  # ]:          0 :                 BUG_ON(!upper);
    1739                 :            : 
    1740         [ #  # ]:          0 :                 if (upper->attribute) {
    1741                 :          0 :                         pr_err("SELinux: type %s: "
    1742                 :            :                                "bounded by attribute %s",
    1743                 :            :                                (char *) key,
    1744                 :            :                                sym_name(p, SYM_TYPES, upper->value - 1));
    1745                 :          0 :                         return -EINVAL;
    1746                 :            :                 }
    1747                 :            :         }
    1748                 :            : 
    1749                 :            :         return 0;
    1750                 :            : }
    1751                 :            : 
    1752                 :          0 : static int policydb_bounds_sanity_check(struct policydb *p)
    1753                 :            : {
    1754                 :          0 :         int rc;
    1755                 :            : 
    1756         [ #  # ]:          0 :         if (p->policyvers < POLICYDB_VERSION_BOUNDARY)
    1757                 :            :                 return 0;
    1758                 :            : 
    1759                 :          0 :         rc = hashtab_map(p->p_users.table,
    1760                 :            :                          user_bounds_sanity_check, p);
    1761         [ #  # ]:          0 :         if (rc)
    1762                 :            :                 return rc;
    1763                 :            : 
    1764                 :          0 :         rc = hashtab_map(p->p_roles.table,
    1765                 :            :                          role_bounds_sanity_check, p);
    1766         [ #  # ]:          0 :         if (rc)
    1767                 :            :                 return rc;
    1768                 :            : 
    1769                 :          0 :         rc = hashtab_map(p->p_types.table,
    1770                 :            :                          type_bounds_sanity_check, p);
    1771         [ #  # ]:          0 :         if (rc)
    1772                 :          0 :                 return rc;
    1773                 :            : 
    1774                 :            :         return 0;
    1775                 :            : }
    1776                 :            : 
    1777                 :          0 : u16 string_to_security_class(struct policydb *p, const char *name)
    1778                 :            : {
    1779                 :          0 :         struct class_datum *cladatum;
    1780                 :            : 
    1781                 :          0 :         cladatum = hashtab_search(p->p_classes.table, name);
    1782   [ #  #  #  # ]:          0 :         if (!cladatum)
    1783                 :            :                 return 0;
    1784                 :            : 
    1785                 :          0 :         return cladatum->value;
    1786                 :            : }
    1787                 :            : 
    1788                 :          0 : u32 string_to_av_perm(struct policydb *p, u16 tclass, const char *name)
    1789                 :            : {
    1790                 :          0 :         struct class_datum *cladatum;
    1791                 :          0 :         struct perm_datum *perdatum = NULL;
    1792                 :          0 :         struct common_datum *comdatum;
    1793                 :            : 
    1794   [ #  #  #  # ]:          0 :         if (!tclass || tclass > p->p_classes.nprim)
    1795                 :            :                 return 0;
    1796                 :            : 
    1797                 :          0 :         cladatum = p->class_val_to_struct[tclass-1];
    1798                 :          0 :         comdatum = cladatum->comdatum;
    1799         [ #  # ]:          0 :         if (comdatum)
    1800                 :          0 :                 perdatum = hashtab_search(comdatum->permissions.table,
    1801                 :            :                                           name);
    1802         [ #  # ]:          0 :         if (!perdatum)
    1803                 :          0 :                 perdatum = hashtab_search(cladatum->permissions.table,
    1804                 :            :                                           name);
    1805         [ #  # ]:          0 :         if (!perdatum)
    1806                 :            :                 return 0;
    1807                 :            : 
    1808                 :          0 :         return 1U << (perdatum->value-1);
    1809                 :            : }
    1810                 :            : 
    1811                 :          0 : static int range_read(struct policydb *p, void *fp)
    1812                 :            : {
    1813                 :          0 :         struct range_trans *rt = NULL;
    1814                 :          0 :         struct mls_range *r = NULL;
    1815                 :          0 :         int i, rc;
    1816                 :          0 :         __le32 buf[2];
    1817                 :          0 :         u32 nel;
    1818                 :            : 
    1819         [ #  # ]:          0 :         if (p->policyvers < POLICYDB_VERSION_MLS)
    1820                 :            :                 return 0;
    1821                 :            : 
    1822         [ #  # ]:          0 :         rc = next_entry(buf, fp, sizeof(u32));
    1823                 :          0 :         if (rc)
    1824                 :            :                 return rc;
    1825                 :            : 
    1826                 :          0 :         nel = le32_to_cpu(buf[0]);
    1827         [ #  # ]:          0 :         for (i = 0; i < nel; i++) {
    1828                 :          0 :                 rc = -ENOMEM;
    1829                 :          0 :                 rt = kzalloc(sizeof(*rt), GFP_KERNEL);
    1830         [ #  # ]:          0 :                 if (!rt)
    1831                 :          0 :                         goto out;
    1832                 :            : 
    1833         [ #  # ]:          0 :                 rc = next_entry(buf, fp, (sizeof(u32) * 2));
    1834                 :          0 :                 if (rc)
    1835                 :          0 :                         goto out;
    1836                 :            : 
    1837                 :          0 :                 rt->source_type = le32_to_cpu(buf[0]);
    1838                 :          0 :                 rt->target_type = le32_to_cpu(buf[1]);
    1839         [ #  # ]:          0 :                 if (p->policyvers >= POLICYDB_VERSION_RANGETRANS) {
    1840         [ #  # ]:          0 :                         rc = next_entry(buf, fp, sizeof(u32));
    1841                 :          0 :                         if (rc)
    1842                 :          0 :                                 goto out;
    1843                 :          0 :                         rt->target_class = le32_to_cpu(buf[0]);
    1844                 :            :                 } else
    1845                 :          0 :                         rt->target_class = p->process_class;
    1846                 :            : 
    1847                 :          0 :                 rc = -EINVAL;
    1848         [ #  # ]:          0 :                 if (!policydb_type_isvalid(p, rt->source_type) ||
    1849                 :            :                     !policydb_type_isvalid(p, rt->target_type) ||
    1850         [ #  # ]:          0 :                     !policydb_class_isvalid(p, rt->target_class))
    1851                 :          0 :                         goto out;
    1852                 :            : 
    1853                 :          0 :                 rc = -ENOMEM;
    1854                 :          0 :                 r = kzalloc(sizeof(*r), GFP_KERNEL);
    1855         [ #  # ]:          0 :                 if (!r)
    1856                 :          0 :                         goto out;
    1857                 :            : 
    1858                 :          0 :                 rc = mls_read_range_helper(r, fp);
    1859         [ #  # ]:          0 :                 if (rc)
    1860                 :          0 :                         goto out;
    1861                 :            : 
    1862                 :          0 :                 rc = -EINVAL;
    1863         [ #  # ]:          0 :                 if (!mls_range_isvalid(p, r)) {
    1864                 :          0 :                         pr_warn("SELinux:  rangetrans:  invalid range\n");
    1865                 :          0 :                         goto out;
    1866                 :            :                 }
    1867                 :            : 
    1868                 :          0 :                 rc = hashtab_insert(p->range_tr, rt, r);
    1869         [ #  # ]:          0 :                 if (rc)
    1870                 :          0 :                         goto out;
    1871                 :            : 
    1872                 :          0 :                 rt = NULL;
    1873                 :          0 :                 r = NULL;
    1874                 :            :         }
    1875                 :            :         hash_eval(p->range_tr, "rangetr");
    1876                 :            :         rc = 0;
    1877                 :          0 : out:
    1878                 :          0 :         kfree(rt);
    1879                 :          0 :         kfree(r);
    1880                 :          0 :         return rc;
    1881                 :            : }
    1882                 :            : 
    1883                 :          0 : static int filename_trans_read(struct policydb *p, void *fp)
    1884                 :            : {
    1885                 :          0 :         struct filename_trans *ft;
    1886                 :          0 :         struct filename_trans_datum *otype;
    1887                 :          0 :         char *name;
    1888                 :          0 :         u32 nel, len;
    1889                 :          0 :         __le32 buf[4];
    1890                 :          0 :         int rc, i;
    1891                 :            : 
    1892         [ #  # ]:          0 :         if (p->policyvers < POLICYDB_VERSION_FILENAME_TRANS)
    1893                 :            :                 return 0;
    1894                 :            : 
    1895         [ #  # ]:          0 :         rc = next_entry(buf, fp, sizeof(u32));
    1896                 :          0 :         if (rc)
    1897                 :            :                 return rc;
    1898                 :          0 :         nel = le32_to_cpu(buf[0]);
    1899                 :            : 
    1900         [ #  # ]:          0 :         for (i = 0; i < nel; i++) {
    1901                 :          0 :                 otype = NULL;
    1902                 :          0 :                 name = NULL;
    1903                 :            : 
    1904                 :          0 :                 rc = -ENOMEM;
    1905                 :          0 :                 ft = kzalloc(sizeof(*ft), GFP_KERNEL);
    1906         [ #  # ]:          0 :                 if (!ft)
    1907                 :          0 :                         goto out;
    1908                 :            : 
    1909                 :          0 :                 rc = -ENOMEM;
    1910                 :          0 :                 otype = kmalloc(sizeof(*otype), GFP_KERNEL);
    1911         [ #  # ]:          0 :                 if (!otype)
    1912                 :          0 :                         goto out;
    1913                 :            : 
    1914                 :            :                 /* length of the path component string */
    1915         [ #  # ]:          0 :                 rc = next_entry(buf, fp, sizeof(u32));
    1916                 :          0 :                 if (rc)
    1917                 :          0 :                         goto out;
    1918                 :          0 :                 len = le32_to_cpu(buf[0]);
    1919                 :            : 
    1920                 :            :                 /* path component string */
    1921                 :          0 :                 rc = str_read(&name, GFP_KERNEL, fp, len);
    1922         [ #  # ]:          0 :                 if (rc)
    1923                 :          0 :                         goto out;
    1924                 :            : 
    1925                 :          0 :                 ft->name = name;
    1926                 :            : 
    1927         [ #  # ]:          0 :                 rc = next_entry(buf, fp, sizeof(u32) * 4);
    1928                 :          0 :                 if (rc)
    1929                 :          0 :                         goto out;
    1930                 :            : 
    1931                 :          0 :                 ft->stype = le32_to_cpu(buf[0]);
    1932                 :          0 :                 ft->ttype = le32_to_cpu(buf[1]);
    1933                 :          0 :                 ft->tclass = le32_to_cpu(buf[2]);
    1934                 :            : 
    1935                 :          0 :                 otype->otype = le32_to_cpu(buf[3]);
    1936                 :            : 
    1937                 :          0 :                 rc = ebitmap_set_bit(&p->filename_trans_ttypes, ft->ttype, 1);
    1938         [ #  # ]:          0 :                 if (rc)
    1939                 :          0 :                         goto out;
    1940                 :            : 
    1941                 :          0 :                 rc = hashtab_insert(p->filename_trans, ft, otype);
    1942         [ #  # ]:          0 :                 if (rc) {
    1943                 :            :                         /*
    1944                 :            :                          * Do not return -EEXIST to the caller, or the system
    1945                 :            :                          * will not boot.
    1946                 :            :                          */
    1947         [ #  # ]:          0 :                         if (rc != -EEXIST)
    1948                 :          0 :                                 goto out;
    1949                 :            :                         /* But free memory to avoid memory leak. */
    1950                 :          0 :                         kfree(ft);
    1951                 :          0 :                         kfree(name);
    1952                 :          0 :                         kfree(otype);
    1953                 :            :                 }
    1954                 :            :         }
    1955                 :            :         hash_eval(p->filename_trans, "filenametr");
    1956                 :            :         return 0;
    1957                 :          0 : out:
    1958                 :          0 :         kfree(ft);
    1959                 :          0 :         kfree(name);
    1960                 :          0 :         kfree(otype);
    1961                 :            : 
    1962                 :          0 :         return rc;
    1963                 :            : }
    1964                 :            : 
    1965                 :          0 : static int genfs_read(struct policydb *p, void *fp)
    1966                 :            : {
    1967                 :          0 :         int i, j, rc;
    1968                 :          0 :         u32 nel, nel2, len, len2;
    1969                 :          0 :         __le32 buf[1];
    1970                 :          0 :         struct ocontext *l, *c;
    1971                 :          0 :         struct ocontext *newc = NULL;
    1972                 :          0 :         struct genfs *genfs_p, *genfs;
    1973                 :          0 :         struct genfs *newgenfs = NULL;
    1974                 :            : 
    1975         [ #  # ]:          0 :         rc = next_entry(buf, fp, sizeof(u32));
    1976                 :          0 :         if (rc)
    1977                 :            :                 return rc;
    1978                 :          0 :         nel = le32_to_cpu(buf[0]);
    1979                 :            : 
    1980         [ #  # ]:          0 :         for (i = 0; i < nel; i++) {
    1981         [ #  # ]:          0 :                 rc = next_entry(buf, fp, sizeof(u32));
    1982                 :          0 :                 if (rc)
    1983                 :          0 :                         goto out;
    1984                 :          0 :                 len = le32_to_cpu(buf[0]);
    1985                 :            : 
    1986                 :          0 :                 rc = -ENOMEM;
    1987                 :          0 :                 newgenfs = kzalloc(sizeof(*newgenfs), GFP_KERNEL);
    1988         [ #  # ]:          0 :                 if (!newgenfs)
    1989                 :          0 :                         goto out;
    1990                 :            : 
    1991                 :          0 :                 rc = str_read(&newgenfs->fstype, GFP_KERNEL, fp, len);
    1992         [ #  # ]:          0 :                 if (rc)
    1993                 :          0 :                         goto out;
    1994                 :            : 
    1995         [ #  # ]:          0 :                 for (genfs_p = NULL, genfs = p->genfs; genfs;
    1996                 :          0 :                      genfs_p = genfs, genfs = genfs->next) {
    1997                 :          0 :                         rc = -EINVAL;
    1998         [ #  # ]:          0 :                         if (strcmp(newgenfs->fstype, genfs->fstype) == 0) {
    1999                 :          0 :                                 pr_err("SELinux:  dup genfs fstype %s\n",
    2000                 :            :                                        newgenfs->fstype);
    2001                 :          0 :                                 goto out;
    2002                 :            :                         }
    2003         [ #  # ]:          0 :                         if (strcmp(newgenfs->fstype, genfs->fstype) < 0)
    2004                 :            :                                 break;
    2005                 :            :                 }
    2006                 :          0 :                 newgenfs->next = genfs;
    2007         [ #  # ]:          0 :                 if (genfs_p)
    2008                 :          0 :                         genfs_p->next = newgenfs;
    2009                 :            :                 else
    2010                 :          0 :                         p->genfs = newgenfs;
    2011                 :          0 :                 genfs = newgenfs;
    2012                 :          0 :                 newgenfs = NULL;
    2013                 :            : 
    2014         [ #  # ]:          0 :                 rc = next_entry(buf, fp, sizeof(u32));
    2015                 :          0 :                 if (rc)
    2016                 :          0 :                         goto out;
    2017                 :            : 
    2018                 :          0 :                 nel2 = le32_to_cpu(buf[0]);
    2019         [ #  # ]:          0 :                 for (j = 0; j < nel2; j++) {
    2020         [ #  # ]:          0 :                         rc = next_entry(buf, fp, sizeof(u32));
    2021                 :          0 :                         if (rc)
    2022                 :          0 :                                 goto out;
    2023                 :          0 :                         len = le32_to_cpu(buf[0]);
    2024                 :            : 
    2025                 :          0 :                         rc = -ENOMEM;
    2026                 :          0 :                         newc = kzalloc(sizeof(*newc), GFP_KERNEL);
    2027         [ #  # ]:          0 :                         if (!newc)
    2028                 :          0 :                                 goto out;
    2029                 :            : 
    2030                 :          0 :                         rc = str_read(&newc->u.name, GFP_KERNEL, fp, len);
    2031         [ #  # ]:          0 :                         if (rc)
    2032                 :          0 :                                 goto out;
    2033                 :            : 
    2034         [ #  # ]:          0 :                         rc = next_entry(buf, fp, sizeof(u32));
    2035                 :          0 :                         if (rc)
    2036                 :          0 :                                 goto out;
    2037                 :            : 
    2038                 :          0 :                         newc->v.sclass = le32_to_cpu(buf[0]);
    2039                 :          0 :                         rc = context_read_and_validate(&newc->context[0], p, fp);
    2040         [ #  # ]:          0 :                         if (rc)
    2041                 :          0 :                                 goto out;
    2042                 :            : 
    2043         [ #  # ]:          0 :                         for (l = NULL, c = genfs->head; c;
    2044                 :          0 :                              l = c, c = c->next) {
    2045                 :          0 :                                 rc = -EINVAL;
    2046         [ #  # ]:          0 :                                 if (!strcmp(newc->u.name, c->u.name) &&
    2047   [ #  #  #  #  :          0 :                                     (!c->v.sclass || !newc->v.sclass ||
                   #  # ]
    2048                 :            :                                      newc->v.sclass == c->v.sclass)) {
    2049                 :          0 :                                         pr_err("SELinux:  dup genfs entry (%s,%s)\n",
    2050                 :            :                                                genfs->fstype, c->u.name);
    2051                 :          0 :                                         goto out;
    2052                 :            :                                 }
    2053                 :          0 :                                 len = strlen(newc->u.name);
    2054                 :          0 :                                 len2 = strlen(c->u.name);
    2055         [ #  # ]:          0 :                                 if (len > len2)
    2056                 :            :                                         break;
    2057                 :            :                         }
    2058                 :            : 
    2059                 :          0 :                         newc->next = c;
    2060         [ #  # ]:          0 :                         if (l)
    2061                 :          0 :                                 l->next = newc;
    2062                 :            :                         else
    2063                 :          0 :                                 genfs->head = newc;
    2064                 :          0 :                         newc = NULL;
    2065                 :            :                 }
    2066                 :            :         }
    2067                 :            :         rc = 0;
    2068                 :          0 : out:
    2069         [ #  # ]:          0 :         if (newgenfs) {
    2070                 :          0 :                 kfree(newgenfs->fstype);
    2071                 :          0 :                 kfree(newgenfs);
    2072                 :            :         }
    2073                 :          0 :         ocontext_destroy(newc, OCON_FSUSE);
    2074                 :            : 
    2075                 :          0 :         return rc;
    2076                 :            : }
    2077                 :            : 
    2078                 :            : static int ocontext_read(struct policydb *p, struct policydb_compat_info *info,
    2079                 :            :                          void *fp)
    2080                 :            : {
    2081                 :            :         int i, j, rc;
    2082                 :            :         u32 nel, len;
    2083                 :            :         __be64 prefixbuf[1];
    2084                 :            :         __le32 buf[3];
    2085                 :            :         struct ocontext *l, *c;
    2086                 :            :         u32 nodebuf[8];
    2087                 :            : 
    2088                 :            :         for (i = 0; i < info->ocon_num; i++) {
    2089                 :            :                 rc = next_entry(buf, fp, sizeof(u32));
    2090                 :            :                 if (rc)
    2091                 :            :                         goto out;
    2092                 :            :                 nel = le32_to_cpu(buf[0]);
    2093                 :            : 
    2094                 :            :                 l = NULL;
    2095                 :            :                 for (j = 0; j < nel; j++) {
    2096                 :            :                         rc = -ENOMEM;
    2097                 :            :                         c = kzalloc(sizeof(*c), GFP_KERNEL);
    2098                 :            :                         if (!c)
    2099                 :            :                                 goto out;
    2100                 :            :                         if (l)
    2101                 :            :                                 l->next = c;
    2102                 :            :                         else
    2103                 :            :                                 p->ocontexts[i] = c;
    2104                 :            :                         l = c;
    2105                 :            : 
    2106                 :            :                         switch (i) {
    2107                 :            :                         case OCON_ISID:
    2108                 :            :                                 rc = next_entry(buf, fp, sizeof(u32));
    2109                 :            :                                 if (rc)
    2110                 :            :                                         goto out;
    2111                 :            : 
    2112                 :            :                                 c->sid[0] = le32_to_cpu(buf[0]);
    2113                 :            :                                 rc = context_read_and_validate(&c->context[0], p, fp);
    2114                 :            :                                 if (rc)
    2115                 :            :                                         goto out;
    2116                 :            :                                 break;
    2117                 :            :                         case OCON_FS:
    2118                 :            :                         case OCON_NETIF:
    2119                 :            :                                 rc = next_entry(buf, fp, sizeof(u32));
    2120                 :            :                                 if (rc)
    2121                 :            :                                         goto out;
    2122                 :            :                                 len = le32_to_cpu(buf[0]);
    2123                 :            : 
    2124                 :            :                                 rc = str_read(&c->u.name, GFP_KERNEL, fp, len);
    2125                 :            :                                 if (rc)
    2126                 :            :                                         goto out;
    2127                 :            : 
    2128                 :            :                                 rc = context_read_and_validate(&c->context[0], p, fp);
    2129                 :            :                                 if (rc)
    2130                 :            :                                         goto out;
    2131                 :            :                                 rc = context_read_and_validate(&c->context[1], p, fp);
    2132                 :            :                                 if (rc)
    2133                 :            :                                         goto out;
    2134                 :            :                                 break;
    2135                 :            :                         case OCON_PORT:
    2136                 :            :                                 rc = next_entry(buf, fp, sizeof(u32)*3);
    2137                 :            :                                 if (rc)
    2138                 :            :                                         goto out;
    2139                 :            :                                 c->u.port.protocol = le32_to_cpu(buf[0]);
    2140                 :            :                                 c->u.port.low_port = le32_to_cpu(buf[1]);
    2141                 :            :                                 c->u.port.high_port = le32_to_cpu(buf[2]);
    2142                 :            :                                 rc = context_read_and_validate(&c->context[0], p, fp);
    2143                 :            :                                 if (rc)
    2144                 :            :                                         goto out;
    2145                 :            :                                 break;
    2146                 :            :                         case OCON_NODE:
    2147                 :            :                                 rc = next_entry(nodebuf, fp, sizeof(u32) * 2);
    2148                 :            :                                 if (rc)
    2149                 :            :                                         goto out;
    2150                 :            :                                 c->u.node.addr = nodebuf[0]; /* network order */
    2151                 :            :                                 c->u.node.mask = nodebuf[1]; /* network order */
    2152                 :            :                                 rc = context_read_and_validate(&c->context[0], p, fp);
    2153                 :            :                                 if (rc)
    2154                 :            :                                         goto out;
    2155                 :            :                                 break;
    2156                 :            :                         case OCON_FSUSE:
    2157                 :            :                                 rc = next_entry(buf, fp, sizeof(u32)*2);
    2158                 :            :                                 if (rc)
    2159                 :            :                                         goto out;
    2160                 :            : 
    2161                 :            :                                 rc = -EINVAL;
    2162                 :            :                                 c->v.behavior = le32_to_cpu(buf[0]);
    2163                 :            :                                 /* Determined at runtime, not in policy DB. */
    2164                 :            :                                 if (c->v.behavior == SECURITY_FS_USE_MNTPOINT)
    2165                 :            :                                         goto out;
    2166                 :            :                                 if (c->v.behavior > SECURITY_FS_USE_MAX)
    2167                 :            :                                         goto out;
    2168                 :            : 
    2169                 :            :                                 len = le32_to_cpu(buf[1]);
    2170                 :            :                                 rc = str_read(&c->u.name, GFP_KERNEL, fp, len);
    2171                 :            :                                 if (rc)
    2172                 :            :                                         goto out;
    2173                 :            : 
    2174                 :            :                                 rc = context_read_and_validate(&c->context[0], p, fp);
    2175                 :            :                                 if (rc)
    2176                 :            :                                         goto out;
    2177                 :            :                                 break;
    2178                 :            :                         case OCON_NODE6: {
    2179                 :            :                                 int k;
    2180                 :            : 
    2181                 :            :                                 rc = next_entry(nodebuf, fp, sizeof(u32) * 8);
    2182                 :            :                                 if (rc)
    2183                 :            :                                         goto out;
    2184                 :            :                                 for (k = 0; k < 4; k++)
    2185                 :            :                                         c->u.node6.addr[k] = nodebuf[k];
    2186                 :            :                                 for (k = 0; k < 4; k++)
    2187                 :            :                                         c->u.node6.mask[k] = nodebuf[k+4];
    2188                 :            :                                 rc = context_read_and_validate(&c->context[0], p, fp);
    2189                 :            :                                 if (rc)
    2190                 :            :                                         goto out;
    2191                 :            :                                 break;
    2192                 :            :                         }
    2193                 :            :                         case OCON_IBPKEY: {
    2194                 :            :                                 u32 pkey_lo, pkey_hi;
    2195                 :            : 
    2196                 :            :                                 rc = next_entry(prefixbuf, fp, sizeof(u64));
    2197                 :            :                                 if (rc)
    2198                 :            :                                         goto out;
    2199                 :            : 
    2200                 :            :                                 /* we need to have subnet_prefix in CPU order */
    2201                 :            :                                 c->u.ibpkey.subnet_prefix = be64_to_cpu(prefixbuf[0]);
    2202                 :            : 
    2203                 :            :                                 rc = next_entry(buf, fp, sizeof(u32) * 2);
    2204                 :            :                                 if (rc)
    2205                 :            :                                         goto out;
    2206                 :            : 
    2207                 :            :                                 pkey_lo = le32_to_cpu(buf[0]);
    2208                 :            :                                 pkey_hi = le32_to_cpu(buf[1]);
    2209                 :            : 
    2210                 :            :                                 if (pkey_lo > U16_MAX || pkey_hi > U16_MAX) {
    2211                 :            :                                         rc = -EINVAL;
    2212                 :            :                                         goto out;
    2213                 :            :                                 }
    2214                 :            : 
    2215                 :            :                                 c->u.ibpkey.low_pkey  = pkey_lo;
    2216                 :            :                                 c->u.ibpkey.high_pkey = pkey_hi;
    2217                 :            : 
    2218                 :            :                                 rc = context_read_and_validate(&c->context[0],
    2219                 :            :                                                                p,
    2220                 :            :                                                                fp);
    2221                 :            :                                 if (rc)
    2222                 :            :                                         goto out;
    2223                 :            :                                 break;
    2224                 :            :                         }
    2225                 :            :                         case OCON_IBENDPORT: {
    2226                 :            :                                 u32 port;
    2227                 :            : 
    2228                 :            :                                 rc = next_entry(buf, fp, sizeof(u32) * 2);
    2229                 :            :                                 if (rc)
    2230                 :            :                                         goto out;
    2231                 :            :                                 len = le32_to_cpu(buf[0]);
    2232                 :            : 
    2233                 :            :                                 rc = str_read(&c->u.ibendport.dev_name, GFP_KERNEL, fp, len);
    2234                 :            :                                 if (rc)
    2235                 :            :                                         goto out;
    2236                 :            : 
    2237                 :            :                                 port = le32_to_cpu(buf[1]);
    2238                 :            :                                 if (port > U8_MAX || port == 0) {
    2239                 :            :                                         rc = -EINVAL;
    2240                 :            :                                         goto out;
    2241                 :            :                                 }
    2242                 :            : 
    2243                 :            :                                 c->u.ibendport.port = port;
    2244                 :            : 
    2245                 :            :                                 rc = context_read_and_validate(&c->context[0],
    2246                 :            :                                                                p,
    2247                 :            :                                                                fp);
    2248                 :            :                                 if (rc)
    2249                 :            :                                         goto out;
    2250                 :            :                                 break;
    2251                 :            :                         } /* end case */
    2252                 :            :                         } /* end switch */
    2253                 :            :                 }
    2254                 :            :         }
    2255                 :            :         rc = 0;
    2256                 :            : out:
    2257                 :            :         return rc;
    2258                 :            : }
    2259                 :            : 
    2260                 :            : /*
    2261                 :            :  * Read the configuration data from a policy database binary
    2262                 :            :  * representation file into a policy database structure.
    2263                 :            :  */
    2264                 :          0 : int policydb_read(struct policydb *p, void *fp)
    2265                 :            : {
    2266                 :          0 :         struct role_allow *ra, *lra;
    2267                 :          0 :         struct role_trans *tr, *ltr;
    2268                 :          0 :         int i, j, rc;
    2269                 :          0 :         __le32 buf[4];
    2270                 :          0 :         u32 len, nprim, nel;
    2271                 :            : 
    2272                 :          0 :         char *policydb_str;
    2273                 :          0 :         struct policydb_compat_info *info;
    2274                 :            : 
    2275                 :          0 :         rc = policydb_init(p);
    2276         [ #  # ]:          0 :         if (rc)
    2277                 :            :                 return rc;
    2278                 :            : 
    2279                 :            :         /* Read the magic number and string length. */
    2280         [ #  # ]:          0 :         rc = next_entry(buf, fp, sizeof(u32) * 2);
    2281                 :          0 :         if (rc)
    2282                 :          0 :                 goto bad;
    2283                 :            : 
    2284                 :          0 :         rc = -EINVAL;
    2285         [ #  # ]:          0 :         if (le32_to_cpu(buf[0]) != POLICYDB_MAGIC) {
    2286                 :          0 :                 pr_err("SELinux:  policydb magic number 0x%x does "
    2287                 :            :                        "not match expected magic number 0x%x\n",
    2288                 :            :                        le32_to_cpu(buf[0]), POLICYDB_MAGIC);
    2289                 :          0 :                 goto bad;
    2290                 :            :         }
    2291                 :            : 
    2292                 :          0 :         rc = -EINVAL;
    2293                 :          0 :         len = le32_to_cpu(buf[1]);
    2294         [ #  # ]:          0 :         if (len != strlen(POLICYDB_STRING)) {
    2295                 :          0 :                 pr_err("SELinux:  policydb string length %d does not "
    2296                 :            :                        "match expected length %zu\n",
    2297                 :            :                        len, strlen(POLICYDB_STRING));
    2298                 :          0 :                 goto bad;
    2299                 :            :         }
    2300                 :            : 
    2301                 :          0 :         rc = -ENOMEM;
    2302                 :          0 :         policydb_str = kmalloc(len + 1, GFP_KERNEL);
    2303         [ #  # ]:          0 :         if (!policydb_str) {
    2304                 :          0 :                 pr_err("SELinux:  unable to allocate memory for policydb "
    2305                 :            :                        "string of length %d\n", len);
    2306                 :          0 :                 goto bad;
    2307                 :            :         }
    2308                 :            : 
    2309         [ #  # ]:          0 :         rc = next_entry(policydb_str, fp, len);
    2310                 :          0 :         if (rc) {
    2311                 :          0 :                 pr_err("SELinux:  truncated policydb string identifier\n");
    2312                 :          0 :                 kfree(policydb_str);
    2313                 :          0 :                 goto bad;
    2314                 :            :         }
    2315                 :            : 
    2316                 :          0 :         rc = -EINVAL;
    2317                 :          0 :         policydb_str[len] = '\0';
    2318         [ #  # ]:          0 :         if (strcmp(policydb_str, POLICYDB_STRING)) {
    2319                 :          0 :                 pr_err("SELinux:  policydb string %s does not match "
    2320                 :            :                        "my string %s\n", policydb_str, POLICYDB_STRING);
    2321                 :          0 :                 kfree(policydb_str);
    2322                 :          0 :                 goto bad;
    2323                 :            :         }
    2324                 :            :         /* Done with policydb_str. */
    2325                 :          0 :         kfree(policydb_str);
    2326                 :          0 :         policydb_str = NULL;
    2327                 :            : 
    2328                 :            :         /* Read the version and table sizes. */
    2329         [ #  # ]:          0 :         rc = next_entry(buf, fp, sizeof(u32)*4);
    2330                 :          0 :         if (rc)
    2331                 :          0 :                 goto bad;
    2332                 :            : 
    2333                 :          0 :         rc = -EINVAL;
    2334                 :          0 :         p->policyvers = le32_to_cpu(buf[0]);
    2335         [ #  # ]:          0 :         if (p->policyvers < POLICYDB_VERSION_MIN ||
    2336                 :            :             p->policyvers > POLICYDB_VERSION_MAX) {
    2337                 :          0 :                 pr_err("SELinux:  policydb version %d does not match "
    2338                 :            :                        "my version range %d-%d\n",
    2339                 :            :                        le32_to_cpu(buf[0]), POLICYDB_VERSION_MIN, POLICYDB_VERSION_MAX);
    2340                 :          0 :                 goto bad;
    2341                 :            :         }
    2342                 :            : 
    2343         [ #  # ]:          0 :         if ((le32_to_cpu(buf[1]) & POLICYDB_CONFIG_MLS)) {
    2344                 :          0 :                 p->mls_enabled = 1;
    2345                 :            : 
    2346                 :          0 :                 rc = -EINVAL;
    2347         [ #  # ]:          0 :                 if (p->policyvers < POLICYDB_VERSION_MLS) {
    2348                 :          0 :                         pr_err("SELinux: security policydb version %d "
    2349                 :            :                                 "(MLS) not backwards compatible\n",
    2350                 :            :                                 p->policyvers);
    2351                 :          0 :                         goto bad;
    2352                 :            :                 }
    2353                 :            :         }
    2354                 :          0 :         p->reject_unknown = !!(le32_to_cpu(buf[1]) & REJECT_UNKNOWN);
    2355                 :          0 :         p->allow_unknown = !!(le32_to_cpu(buf[1]) & ALLOW_UNKNOWN);
    2356                 :            : 
    2357         [ #  # ]:          0 :         if (p->policyvers >= POLICYDB_VERSION_POLCAP) {
    2358                 :          0 :                 rc = ebitmap_read(&p->policycaps, fp);
    2359         [ #  # ]:          0 :                 if (rc)
    2360                 :          0 :                         goto bad;
    2361                 :            :         }
    2362                 :            : 
    2363         [ #  # ]:          0 :         if (p->policyvers >= POLICYDB_VERSION_PERMISSIVE) {
    2364                 :          0 :                 rc = ebitmap_read(&p->permissive_map, fp);
    2365         [ #  # ]:          0 :                 if (rc)
    2366                 :          0 :                         goto bad;
    2367                 :            :         }
    2368                 :            : 
    2369                 :          0 :         rc = -EINVAL;
    2370                 :          0 :         info = policydb_lookup_compat(p->policyvers);
    2371         [ #  # ]:          0 :         if (!info) {
    2372                 :          0 :                 pr_err("SELinux:  unable to find policy compat info "
    2373                 :            :                        "for version %d\n", p->policyvers);
    2374                 :          0 :                 goto bad;
    2375                 :            :         }
    2376                 :            : 
    2377                 :          0 :         rc = -EINVAL;
    2378         [ #  # ]:          0 :         if (le32_to_cpu(buf[2]) != info->sym_num ||
    2379         [ #  # ]:          0 :                 le32_to_cpu(buf[3]) != info->ocon_num) {
    2380                 :          0 :                 pr_err("SELinux:  policydb table sizes (%d,%d) do "
    2381                 :            :                        "not match mine (%d,%d)\n", le32_to_cpu(buf[2]),
    2382                 :            :                         le32_to_cpu(buf[3]),
    2383                 :            :                        info->sym_num, info->ocon_num);
    2384                 :          0 :                 goto bad;
    2385                 :            :         }
    2386                 :            : 
    2387         [ #  # ]:          0 :         for (i = 0; i < info->sym_num; i++) {
    2388         [ #  # ]:          0 :                 rc = next_entry(buf, fp, sizeof(u32)*2);
    2389                 :          0 :                 if (rc)
    2390                 :          0 :                         goto bad;
    2391                 :          0 :                 nprim = le32_to_cpu(buf[0]);
    2392                 :          0 :                 nel = le32_to_cpu(buf[1]);
    2393         [ #  # ]:          0 :                 for (j = 0; j < nel; j++) {
    2394                 :          0 :                         rc = read_f[i](p, p->symtab[i].table, fp);
    2395         [ #  # ]:          0 :                         if (rc)
    2396                 :          0 :                                 goto bad;
    2397                 :            :                 }
    2398                 :            : 
    2399                 :          0 :                 p->symtab[i].nprim = nprim;
    2400                 :            :         }
    2401                 :            : 
    2402                 :          0 :         rc = -EINVAL;
    2403                 :          0 :         p->process_class = string_to_security_class(p, "process");
    2404         [ #  # ]:          0 :         if (!p->process_class)
    2405                 :          0 :                 goto bad;
    2406                 :            : 
    2407                 :          0 :         rc = avtab_read(&p->te_avtab, fp, p);
    2408         [ #  # ]:          0 :         if (rc)
    2409                 :          0 :                 goto bad;
    2410                 :            : 
    2411         [ #  # ]:          0 :         if (p->policyvers >= POLICYDB_VERSION_BOOL) {
    2412                 :          0 :                 rc = cond_read_list(p, fp);
    2413         [ #  # ]:          0 :                 if (rc)
    2414                 :          0 :                         goto bad;
    2415                 :            :         }
    2416                 :            : 
    2417         [ #  # ]:          0 :         rc = next_entry(buf, fp, sizeof(u32));
    2418                 :          0 :         if (rc)
    2419                 :          0 :                 goto bad;
    2420                 :          0 :         nel = le32_to_cpu(buf[0]);
    2421                 :          0 :         ltr = NULL;
    2422         [ #  # ]:          0 :         for (i = 0; i < nel; i++) {
    2423                 :          0 :                 rc = -ENOMEM;
    2424                 :          0 :                 tr = kzalloc(sizeof(*tr), GFP_KERNEL);
    2425         [ #  # ]:          0 :                 if (!tr)
    2426                 :          0 :                         goto bad;
    2427         [ #  # ]:          0 :                 if (ltr)
    2428                 :          0 :                         ltr->next = tr;
    2429                 :            :                 else
    2430                 :          0 :                         p->role_tr = tr;
    2431         [ #  # ]:          0 :                 rc = next_entry(buf, fp, sizeof(u32)*3);
    2432                 :          0 :                 if (rc)
    2433                 :          0 :                         goto bad;
    2434                 :            : 
    2435                 :          0 :                 rc = -EINVAL;
    2436                 :          0 :                 tr->role = le32_to_cpu(buf[0]);
    2437                 :          0 :                 tr->type = le32_to_cpu(buf[1]);
    2438                 :          0 :                 tr->new_role = le32_to_cpu(buf[2]);
    2439         [ #  # ]:          0 :                 if (p->policyvers >= POLICYDB_VERSION_ROLETRANS) {
    2440         [ #  # ]:          0 :                         rc = next_entry(buf, fp, sizeof(u32));
    2441                 :          0 :                         if (rc)
    2442                 :          0 :                                 goto bad;
    2443                 :          0 :                         tr->tclass = le32_to_cpu(buf[0]);
    2444                 :            :                 } else
    2445                 :          0 :                         tr->tclass = p->process_class;
    2446                 :            : 
    2447                 :          0 :                 rc = -EINVAL;
    2448         [ #  # ]:          0 :                 if (!policydb_role_isvalid(p, tr->role) ||
    2449                 :            :                     !policydb_type_isvalid(p, tr->type) ||
    2450         [ #  # ]:          0 :                     !policydb_class_isvalid(p, tr->tclass) ||
    2451                 :            :                     !policydb_role_isvalid(p, tr->new_role))
    2452                 :          0 :                         goto bad;
    2453                 :          0 :                 ltr = tr;
    2454                 :            :         }
    2455                 :            : 
    2456         [ #  # ]:          0 :         rc = next_entry(buf, fp, sizeof(u32));
    2457                 :          0 :         if (rc)
    2458                 :          0 :                 goto bad;
    2459                 :          0 :         nel = le32_to_cpu(buf[0]);
    2460                 :          0 :         lra = NULL;
    2461         [ #  # ]:          0 :         for (i = 0; i < nel; i++) {
    2462                 :          0 :                 rc = -ENOMEM;
    2463                 :          0 :                 ra = kzalloc(sizeof(*ra), GFP_KERNEL);
    2464         [ #  # ]:          0 :                 if (!ra)
    2465                 :          0 :                         goto bad;
    2466         [ #  # ]:          0 :                 if (lra)
    2467                 :          0 :                         lra->next = ra;
    2468                 :            :                 else
    2469                 :          0 :                         p->role_allow = ra;
    2470         [ #  # ]:          0 :                 rc = next_entry(buf, fp, sizeof(u32)*2);
    2471                 :          0 :                 if (rc)
    2472                 :          0 :                         goto bad;
    2473                 :            : 
    2474                 :          0 :                 rc = -EINVAL;
    2475                 :          0 :                 ra->role = le32_to_cpu(buf[0]);
    2476                 :          0 :                 ra->new_role = le32_to_cpu(buf[1]);
    2477         [ #  # ]:          0 :                 if (!policydb_role_isvalid(p, ra->role) ||
    2478                 :            :                     !policydb_role_isvalid(p, ra->new_role))
    2479                 :          0 :                         goto bad;
    2480                 :          0 :                 lra = ra;
    2481                 :            :         }
    2482                 :            : 
    2483                 :          0 :         rc = filename_trans_read(p, fp);
    2484         [ #  # ]:          0 :         if (rc)
    2485                 :          0 :                 goto bad;
    2486                 :            : 
    2487                 :          0 :         rc = policydb_index(p);
    2488         [ #  # ]:          0 :         if (rc)
    2489                 :          0 :                 goto bad;
    2490                 :            : 
    2491                 :          0 :         rc = -EINVAL;
    2492                 :          0 :         p->process_trans_perms = string_to_av_perm(p, p->process_class, "transition");
    2493                 :          0 :         p->process_trans_perms |= string_to_av_perm(p, p->process_class, "dyntransition");
    2494         [ #  # ]:          0 :         if (!p->process_trans_perms)
    2495                 :          0 :                 goto bad;
    2496                 :            : 
    2497                 :          0 :         rc = ocontext_read(p, info, fp);
    2498         [ #  # ]:          0 :         if (rc)
    2499                 :          0 :                 goto bad;
    2500                 :            : 
    2501                 :          0 :         rc = genfs_read(p, fp);
    2502         [ #  # ]:          0 :         if (rc)
    2503                 :          0 :                 goto bad;
    2504                 :            : 
    2505                 :          0 :         rc = range_read(p, fp);
    2506         [ #  # ]:          0 :         if (rc)
    2507                 :          0 :                 goto bad;
    2508                 :            : 
    2509                 :          0 :         p->type_attr_map_array = kvcalloc(p->p_types.nprim,
    2510                 :            :                                           sizeof(*p->type_attr_map_array),
    2511                 :            :                                           GFP_KERNEL);
    2512         [ #  # ]:          0 :         if (!p->type_attr_map_array)
    2513                 :          0 :                 goto bad;
    2514                 :            : 
    2515                 :            :         /* just in case ebitmap_init() becomes more than just a memset(0): */
    2516         [ #  # ]:          0 :         for (i = 0; i < p->p_types.nprim; i++)
    2517                 :          0 :                 ebitmap_init(&p->type_attr_map_array[i]);
    2518                 :            : 
    2519         [ #  # ]:          0 :         for (i = 0; i < p->p_types.nprim; i++) {
    2520                 :          0 :                 struct ebitmap *e = &p->type_attr_map_array[i];
    2521                 :            : 
    2522         [ #  # ]:          0 :                 if (p->policyvers >= POLICYDB_VERSION_AVTAB) {
    2523                 :          0 :                         rc = ebitmap_read(e, fp);
    2524         [ #  # ]:          0 :                         if (rc)
    2525                 :          0 :                                 goto bad;
    2526                 :            :                 }
    2527                 :            :                 /* add the type itself as the degenerate case */
    2528                 :          0 :                 rc = ebitmap_set_bit(e, i, 1);
    2529         [ #  # ]:          0 :                 if (rc)
    2530                 :          0 :                         goto bad;
    2531                 :            :         }
    2532                 :            : 
    2533                 :          0 :         rc = policydb_bounds_sanity_check(p);
    2534         [ #  # ]:          0 :         if (rc)
    2535                 :          0 :                 goto bad;
    2536                 :            : 
    2537                 :            :         rc = 0;
    2538                 :            : out:
    2539                 :            :         return rc;
    2540                 :          0 : bad:
    2541                 :          0 :         policydb_destroy(p);
    2542                 :          0 :         goto out;
    2543                 :            : }
    2544                 :            : 
    2545                 :            : /*
    2546                 :            :  * Write a MLS level structure to a policydb binary
    2547                 :            :  * representation file.
    2548                 :            :  */
    2549                 :          0 : static int mls_write_level(struct mls_level *l, void *fp)
    2550                 :            : {
    2551                 :          0 :         __le32 buf[1];
    2552                 :          0 :         int rc;
    2553                 :            : 
    2554                 :          0 :         buf[0] = cpu_to_le32(l->sens);
    2555                 :          0 :         rc = put_entry(buf, sizeof(u32), 1, fp);
    2556                 :          0 :         if (rc)
    2557                 :            :                 return rc;
    2558                 :            : 
    2559                 :          0 :         rc = ebitmap_write(&l->cat, fp);
    2560         [ #  # ]:          0 :         if (rc)
    2561                 :          0 :                 return rc;
    2562                 :            : 
    2563                 :            :         return 0;
    2564                 :            : }
    2565                 :            : 
    2566                 :            : /*
    2567                 :            :  * Write a MLS range structure to a policydb binary
    2568                 :            :  * representation file.
    2569                 :            :  */
    2570                 :          0 : static int mls_write_range_helper(struct mls_range *r, void *fp)
    2571                 :            : {
    2572                 :          0 :         __le32 buf[3];
    2573                 :          0 :         size_t items;
    2574                 :          0 :         int rc, eq;
    2575                 :            : 
    2576         [ #  # ]:          0 :         eq = mls_level_eq(&r->level[1], &r->level[0]);
    2577                 :            : 
    2578                 :            :         if (eq)
    2579                 :            :                 items = 2;
    2580                 :            :         else
    2581                 :            :                 items = 3;
    2582                 :          0 :         buf[0] = cpu_to_le32(items-1);
    2583                 :          0 :         buf[1] = cpu_to_le32(r->level[0].sens);
    2584         [ #  # ]:          0 :         if (!eq)
    2585                 :          0 :                 buf[2] = cpu_to_le32(r->level[1].sens);
    2586                 :            : 
    2587                 :          0 :         BUG_ON(items > ARRAY_SIZE(buf));
    2588                 :            : 
    2589                 :          0 :         rc = put_entry(buf, sizeof(u32), items, fp);
    2590                 :          0 :         if (rc)
    2591                 :            :                 return rc;
    2592                 :            : 
    2593                 :          0 :         rc = ebitmap_write(&r->level[0].cat, fp);
    2594         [ #  # ]:          0 :         if (rc)
    2595                 :            :                 return rc;
    2596         [ #  # ]:          0 :         if (!eq) {
    2597                 :          0 :                 rc = ebitmap_write(&r->level[1].cat, fp);
    2598         [ #  # ]:          0 :                 if (rc)
    2599                 :          0 :                         return rc;
    2600                 :            :         }
    2601                 :            : 
    2602                 :            :         return 0;
    2603                 :            : }
    2604                 :            : 
    2605                 :          0 : static int sens_write(void *vkey, void *datum, void *ptr)
    2606                 :            : {
    2607                 :          0 :         char *key = vkey;
    2608                 :          0 :         struct level_datum *levdatum = datum;
    2609                 :          0 :         struct policy_data *pd = ptr;
    2610                 :          0 :         void *fp = pd->fp;
    2611                 :          0 :         __le32 buf[2];
    2612                 :          0 :         size_t len;
    2613                 :          0 :         int rc;
    2614                 :            : 
    2615                 :          0 :         len = strlen(key);
    2616                 :          0 :         buf[0] = cpu_to_le32(len);
    2617                 :          0 :         buf[1] = cpu_to_le32(levdatum->isalias);
    2618                 :          0 :         rc = put_entry(buf, sizeof(u32), 2, fp);
    2619                 :          0 :         if (rc)
    2620                 :            :                 return rc;
    2621                 :            : 
    2622                 :          0 :         rc = put_entry(key, 1, len, fp);
    2623                 :          0 :         if (rc)
    2624                 :            :                 return rc;
    2625                 :            : 
    2626                 :          0 :         rc = mls_write_level(levdatum->level, fp);
    2627         [ #  # ]:          0 :         if (rc)
    2628                 :          0 :                 return rc;
    2629                 :            : 
    2630                 :            :         return 0;
    2631                 :            : }
    2632                 :            : 
    2633                 :          0 : static int cat_write(void *vkey, void *datum, void *ptr)
    2634                 :            : {
    2635                 :          0 :         char *key = vkey;
    2636                 :          0 :         struct cat_datum *catdatum = datum;
    2637                 :          0 :         struct policy_data *pd = ptr;
    2638                 :          0 :         void *fp = pd->fp;
    2639                 :          0 :         __le32 buf[3];
    2640                 :          0 :         size_t len;
    2641                 :          0 :         int rc;
    2642                 :            : 
    2643                 :          0 :         len = strlen(key);
    2644                 :          0 :         buf[0] = cpu_to_le32(len);
    2645                 :          0 :         buf[1] = cpu_to_le32(catdatum->value);
    2646                 :          0 :         buf[2] = cpu_to_le32(catdatum->isalias);
    2647                 :          0 :         rc = put_entry(buf, sizeof(u32), 3, fp);
    2648                 :          0 :         if (rc)
    2649                 :            :                 return rc;
    2650                 :            : 
    2651                 :          0 :         rc = put_entry(key, 1, len, fp);
    2652                 :          0 :         if (rc)
    2653                 :            :                 return rc;
    2654                 :            : 
    2655                 :          0 :         return 0;
    2656                 :            : }
    2657                 :            : 
    2658                 :            : static int role_trans_write(struct policydb *p, void *fp)
    2659                 :            : {
    2660                 :            :         struct role_trans *r = p->role_tr;
    2661                 :            :         struct role_trans *tr;
    2662                 :            :         __le32 buf[3];
    2663                 :            :         size_t nel;
    2664                 :            :         int rc;
    2665                 :            : 
    2666                 :            :         nel = 0;
    2667                 :            :         for (tr = r; tr; tr = tr->next)
    2668                 :            :                 nel++;
    2669                 :            :         buf[0] = cpu_to_le32(nel);
    2670                 :            :         rc = put_entry(buf, sizeof(u32), 1, fp);
    2671                 :            :         if (rc)
    2672                 :            :                 return rc;
    2673                 :            :         for (tr = r; tr; tr = tr->next) {
    2674                 :            :                 buf[0] = cpu_to_le32(tr->role);
    2675                 :            :                 buf[1] = cpu_to_le32(tr->type);
    2676                 :            :                 buf[2] = cpu_to_le32(tr->new_role);
    2677                 :            :                 rc = put_entry(buf, sizeof(u32), 3, fp);
    2678                 :            :                 if (rc)
    2679                 :            :                         return rc;
    2680                 :            :                 if (p->policyvers >= POLICYDB_VERSION_ROLETRANS) {
    2681                 :            :                         buf[0] = cpu_to_le32(tr->tclass);
    2682                 :            :                         rc = put_entry(buf, sizeof(u32), 1, fp);
    2683                 :            :                         if (rc)
    2684                 :            :                                 return rc;
    2685                 :            :                 }
    2686                 :            :         }
    2687                 :            : 
    2688                 :            :         return 0;
    2689                 :            : }
    2690                 :            : 
    2691                 :          0 : static int role_allow_write(struct role_allow *r, void *fp)
    2692                 :            : {
    2693                 :          0 :         struct role_allow *ra;
    2694                 :          0 :         __le32 buf[2];
    2695                 :          0 :         size_t nel;
    2696                 :          0 :         int rc;
    2697                 :            : 
    2698                 :          0 :         nel = 0;
    2699         [ #  # ]:          0 :         for (ra = r; ra; ra = ra->next)
    2700                 :          0 :                 nel++;
    2701                 :          0 :         buf[0] = cpu_to_le32(nel);
    2702                 :          0 :         rc = put_entry(buf, sizeof(u32), 1, fp);
    2703                 :          0 :         if (rc)
    2704                 :            :                 return rc;
    2705         [ #  # ]:          0 :         for (ra = r; ra; ra = ra->next) {
    2706                 :          0 :                 buf[0] = cpu_to_le32(ra->role);
    2707                 :          0 :                 buf[1] = cpu_to_le32(ra->new_role);
    2708                 :          0 :                 rc = put_entry(buf, sizeof(u32), 2, fp);
    2709                 :          0 :                 if (rc)
    2710                 :            :                         return rc;
    2711                 :            :         }
    2712                 :          0 :         return 0;
    2713                 :            : }
    2714                 :            : 
    2715                 :            : /*
    2716                 :            :  * Write a security context structure
    2717                 :            :  * to a policydb binary representation file.
    2718                 :            :  */
    2719                 :            : static int context_write(struct policydb *p, struct context *c,
    2720                 :            :                          void *fp)
    2721                 :            : {
    2722                 :            :         int rc;
    2723                 :            :         __le32 buf[3];
    2724                 :            : 
    2725                 :            :         buf[0] = cpu_to_le32(c->user);
    2726                 :            :         buf[1] = cpu_to_le32(c->role);
    2727                 :            :         buf[2] = cpu_to_le32(c->type);
    2728                 :            : 
    2729                 :            :         rc = put_entry(buf, sizeof(u32), 3, fp);
    2730                 :            :         if (rc)
    2731                 :            :                 return rc;
    2732                 :            : 
    2733                 :            :         rc = mls_write_range_helper(&c->range, fp);
    2734                 :            :         if (rc)
    2735                 :            :                 return rc;
    2736                 :            : 
    2737                 :            :         return 0;
    2738                 :            : }
    2739                 :            : 
    2740                 :            : /*
    2741                 :            :  * The following *_write functions are used to
    2742                 :            :  * write the symbol data to a policy database
    2743                 :            :  * binary representation file.
    2744                 :            :  */
    2745                 :            : 
    2746                 :          0 : static int perm_write(void *vkey, void *datum, void *fp)
    2747                 :            : {
    2748                 :          0 :         char *key = vkey;
    2749                 :          0 :         struct perm_datum *perdatum = datum;
    2750                 :          0 :         __le32 buf[2];
    2751                 :          0 :         size_t len;
    2752                 :          0 :         int rc;
    2753                 :            : 
    2754                 :          0 :         len = strlen(key);
    2755                 :          0 :         buf[0] = cpu_to_le32(len);
    2756                 :          0 :         buf[1] = cpu_to_le32(perdatum->value);
    2757                 :          0 :         rc = put_entry(buf, sizeof(u32), 2, fp);
    2758                 :          0 :         if (rc)
    2759                 :            :                 return rc;
    2760                 :            : 
    2761                 :          0 :         rc = put_entry(key, 1, len, fp);
    2762                 :          0 :         if (rc)
    2763                 :            :                 return rc;
    2764                 :            : 
    2765                 :          0 :         return 0;
    2766                 :            : }
    2767                 :            : 
    2768                 :          0 : static int common_write(void *vkey, void *datum, void *ptr)
    2769                 :            : {
    2770                 :          0 :         char *key = vkey;
    2771                 :          0 :         struct common_datum *comdatum = datum;
    2772                 :          0 :         struct policy_data *pd = ptr;
    2773                 :          0 :         void *fp = pd->fp;
    2774                 :          0 :         __le32 buf[4];
    2775                 :          0 :         size_t len;
    2776                 :          0 :         int rc;
    2777                 :            : 
    2778                 :          0 :         len = strlen(key);
    2779                 :          0 :         buf[0] = cpu_to_le32(len);
    2780                 :          0 :         buf[1] = cpu_to_le32(comdatum->value);
    2781                 :          0 :         buf[2] = cpu_to_le32(comdatum->permissions.nprim);
    2782                 :          0 :         buf[3] = cpu_to_le32(comdatum->permissions.table->nel);
    2783                 :          0 :         rc = put_entry(buf, sizeof(u32), 4, fp);
    2784                 :          0 :         if (rc)
    2785                 :            :                 return rc;
    2786                 :            : 
    2787                 :          0 :         rc = put_entry(key, 1, len, fp);
    2788                 :          0 :         if (rc)
    2789                 :            :                 return rc;
    2790                 :            : 
    2791                 :          0 :         rc = hashtab_map(comdatum->permissions.table, perm_write, fp);
    2792         [ #  # ]:          0 :         if (rc)
    2793                 :          0 :                 return rc;
    2794                 :            : 
    2795                 :            :         return 0;
    2796                 :            : }
    2797                 :            : 
    2798                 :          0 : static int type_set_write(struct type_set *t, void *fp)
    2799                 :            : {
    2800                 :          0 :         int rc;
    2801                 :          0 :         __le32 buf[1];
    2802                 :            : 
    2803         [ #  # ]:          0 :         if (ebitmap_write(&t->types, fp))
    2804                 :            :                 return -EINVAL;
    2805         [ #  # ]:          0 :         if (ebitmap_write(&t->negset, fp))
    2806                 :            :                 return -EINVAL;
    2807                 :            : 
    2808                 :          0 :         buf[0] = cpu_to_le32(t->flags);
    2809                 :          0 :         rc = put_entry(buf, sizeof(u32), 1, fp);
    2810                 :          0 :         if (rc)
    2811                 :            :                 return -EINVAL;
    2812                 :            : 
    2813                 :          0 :         return 0;
    2814                 :            : }
    2815                 :            : 
    2816                 :            : static int write_cons_helper(struct policydb *p, struct constraint_node *node,
    2817                 :            :                              void *fp)
    2818                 :            : {
    2819                 :            :         struct constraint_node *c;
    2820                 :            :         struct constraint_expr *e;
    2821                 :            :         __le32 buf[3];
    2822                 :            :         u32 nel;
    2823                 :            :         int rc;
    2824                 :            : 
    2825                 :            :         for (c = node; c; c = c->next) {
    2826                 :            :                 nel = 0;
    2827                 :            :                 for (e = c->expr; e; e = e->next)
    2828                 :            :                         nel++;
    2829                 :            :                 buf[0] = cpu_to_le32(c->permissions);
    2830                 :            :                 buf[1] = cpu_to_le32(nel);
    2831                 :            :                 rc = put_entry(buf, sizeof(u32), 2, fp);
    2832                 :            :                 if (rc)
    2833                 :            :                         return rc;
    2834                 :            :                 for (e = c->expr; e; e = e->next) {
    2835                 :            :                         buf[0] = cpu_to_le32(e->expr_type);
    2836                 :            :                         buf[1] = cpu_to_le32(e->attr);
    2837                 :            :                         buf[2] = cpu_to_le32(e->op);
    2838                 :            :                         rc = put_entry(buf, sizeof(u32), 3, fp);
    2839                 :            :                         if (rc)
    2840                 :            :                                 return rc;
    2841                 :            : 
    2842                 :            :                         switch (e->expr_type) {
    2843                 :            :                         case CEXPR_NAMES:
    2844                 :            :                                 rc = ebitmap_write(&e->names, fp);
    2845                 :            :                                 if (rc)
    2846                 :            :                                         return rc;
    2847                 :            :                                 if (p->policyvers >=
    2848                 :            :                                         POLICYDB_VERSION_CONSTRAINT_NAMES) {
    2849                 :            :                                         rc = type_set_write(e->type_names, fp);
    2850                 :            :                                         if (rc)
    2851                 :            :                                                 return rc;
    2852                 :            :                                 }
    2853                 :            :                                 break;
    2854                 :            :                         default:
    2855                 :            :                                 break;
    2856                 :            :                         }
    2857                 :            :                 }
    2858                 :            :         }
    2859                 :            : 
    2860                 :            :         return 0;
    2861                 :            : }
    2862                 :            : 
    2863                 :          0 : static int class_write(void *vkey, void *datum, void *ptr)
    2864                 :            : {
    2865                 :          0 :         char *key = vkey;
    2866                 :          0 :         struct class_datum *cladatum = datum;
    2867                 :          0 :         struct policy_data *pd = ptr;
    2868                 :          0 :         void *fp = pd->fp;
    2869                 :          0 :         struct policydb *p = pd->p;
    2870                 :          0 :         struct constraint_node *c;
    2871                 :          0 :         __le32 buf[6];
    2872                 :          0 :         u32 ncons;
    2873                 :          0 :         size_t len, len2;
    2874                 :          0 :         int rc;
    2875                 :            : 
    2876                 :          0 :         len = strlen(key);
    2877         [ #  # ]:          0 :         if (cladatum->comkey)
    2878                 :          0 :                 len2 = strlen(cladatum->comkey);
    2879                 :            :         else
    2880                 :            :                 len2 = 0;
    2881                 :            : 
    2882                 :          0 :         ncons = 0;
    2883         [ #  # ]:          0 :         for (c = cladatum->constraints; c; c = c->next)
    2884                 :          0 :                 ncons++;
    2885                 :            : 
    2886                 :          0 :         buf[0] = cpu_to_le32(len);
    2887                 :          0 :         buf[1] = cpu_to_le32(len2);
    2888                 :          0 :         buf[2] = cpu_to_le32(cladatum->value);
    2889                 :          0 :         buf[3] = cpu_to_le32(cladatum->permissions.nprim);
    2890         [ #  # ]:          0 :         if (cladatum->permissions.table)
    2891                 :          0 :                 buf[4] = cpu_to_le32(cladatum->permissions.table->nel);
    2892                 :            :         else
    2893                 :          0 :                 buf[4] = 0;
    2894                 :          0 :         buf[5] = cpu_to_le32(ncons);
    2895         [ #  # ]:          0 :         rc = put_entry(buf, sizeof(u32), 6, fp);
    2896                 :          0 :         if (rc)
    2897                 :            :                 return rc;
    2898                 :            : 
    2899                 :          0 :         rc = put_entry(key, 1, len, fp);
    2900                 :          0 :         if (rc)
    2901                 :            :                 return rc;
    2902                 :            : 
    2903         [ #  # ]:          0 :         if (cladatum->comkey) {
    2904                 :          0 :                 rc = put_entry(cladatum->comkey, 1, len2, fp);
    2905                 :          0 :                 if (rc)
    2906                 :            :                         return rc;
    2907                 :            :         }
    2908                 :            : 
    2909                 :          0 :         rc = hashtab_map(cladatum->permissions.table, perm_write, fp);
    2910         [ #  # ]:          0 :         if (rc)
    2911                 :            :                 return rc;
    2912                 :            : 
    2913                 :          0 :         rc = write_cons_helper(p, cladatum->constraints, fp);
    2914         [ #  # ]:          0 :         if (rc)
    2915                 :            :                 return rc;
    2916                 :            : 
    2917                 :            :         /* write out the validatetrans rule */
    2918                 :          0 :         ncons = 0;
    2919         [ #  # ]:          0 :         for (c = cladatum->validatetrans; c; c = c->next)
    2920                 :          0 :                 ncons++;
    2921                 :            : 
    2922                 :          0 :         buf[0] = cpu_to_le32(ncons);
    2923                 :          0 :         rc = put_entry(buf, sizeof(u32), 1, fp);
    2924                 :          0 :         if (rc)
    2925                 :            :                 return rc;
    2926                 :            : 
    2927                 :          0 :         rc = write_cons_helper(p, cladatum->validatetrans, fp);
    2928         [ #  # ]:          0 :         if (rc)
    2929                 :            :                 return rc;
    2930                 :            : 
    2931         [ #  # ]:          0 :         if (p->policyvers >= POLICYDB_VERSION_NEW_OBJECT_DEFAULTS) {
    2932                 :          0 :                 buf[0] = cpu_to_le32(cladatum->default_user);
    2933                 :          0 :                 buf[1] = cpu_to_le32(cladatum->default_role);
    2934                 :          0 :                 buf[2] = cpu_to_le32(cladatum->default_range);
    2935                 :            : 
    2936                 :          0 :                 rc = put_entry(buf, sizeof(uint32_t), 3, fp);
    2937                 :          0 :                 if (rc)
    2938                 :            :                         return rc;
    2939                 :            :         }
    2940                 :            : 
    2941         [ #  # ]:          0 :         if (p->policyvers >= POLICYDB_VERSION_DEFAULT_TYPE) {
    2942                 :          0 :                 buf[0] = cpu_to_le32(cladatum->default_type);
    2943                 :          0 :                 rc = put_entry(buf, sizeof(uint32_t), 1, fp);
    2944                 :          0 :                 if (rc)
    2945                 :            :                         return rc;
    2946                 :            :         }
    2947                 :            : 
    2948                 :            :         return 0;
    2949                 :            : }
    2950                 :            : 
    2951                 :          0 : static int role_write(void *vkey, void *datum, void *ptr)
    2952                 :            : {
    2953                 :          0 :         char *key = vkey;
    2954                 :          0 :         struct role_datum *role = datum;
    2955                 :          0 :         struct policy_data *pd = ptr;
    2956                 :          0 :         void *fp = pd->fp;
    2957                 :          0 :         struct policydb *p = pd->p;
    2958                 :          0 :         __le32 buf[3];
    2959                 :          0 :         size_t items, len;
    2960                 :          0 :         int rc;
    2961                 :            : 
    2962                 :          0 :         len = strlen(key);
    2963                 :          0 :         items = 0;
    2964                 :          0 :         buf[items++] = cpu_to_le32(len);
    2965                 :          0 :         buf[items++] = cpu_to_le32(role->value);
    2966         [ #  # ]:          0 :         if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
    2967                 :          0 :                 buf[items++] = cpu_to_le32(role->bounds);
    2968                 :            : 
    2969                 :          0 :         BUG_ON(items > ARRAY_SIZE(buf));
    2970                 :            : 
    2971                 :          0 :         rc = put_entry(buf, sizeof(u32), items, fp);
    2972                 :          0 :         if (rc)
    2973                 :            :                 return rc;
    2974                 :            : 
    2975                 :          0 :         rc = put_entry(key, 1, len, fp);
    2976                 :          0 :         if (rc)
    2977                 :            :                 return rc;
    2978                 :            : 
    2979                 :          0 :         rc = ebitmap_write(&role->dominates, fp);
    2980         [ #  # ]:          0 :         if (rc)
    2981                 :            :                 return rc;
    2982                 :            : 
    2983                 :          0 :         rc = ebitmap_write(&role->types, fp);
    2984         [ #  # ]:          0 :         if (rc)
    2985                 :          0 :                 return rc;
    2986                 :            : 
    2987                 :            :         return 0;
    2988                 :            : }
    2989                 :            : 
    2990                 :          0 : static int type_write(void *vkey, void *datum, void *ptr)
    2991                 :            : {
    2992                 :          0 :         char *key = vkey;
    2993                 :          0 :         struct type_datum *typdatum = datum;
    2994                 :          0 :         struct policy_data *pd = ptr;
    2995                 :          0 :         struct policydb *p = pd->p;
    2996                 :          0 :         void *fp = pd->fp;
    2997                 :          0 :         __le32 buf[4];
    2998                 :          0 :         int rc;
    2999                 :          0 :         size_t items, len;
    3000                 :            : 
    3001                 :          0 :         len = strlen(key);
    3002                 :          0 :         items = 0;
    3003                 :          0 :         buf[items++] = cpu_to_le32(len);
    3004                 :          0 :         buf[items++] = cpu_to_le32(typdatum->value);
    3005         [ #  # ]:          0 :         if (p->policyvers >= POLICYDB_VERSION_BOUNDARY) {
    3006                 :          0 :                 u32 properties = 0;
    3007                 :            : 
    3008         [ #  # ]:          0 :                 if (typdatum->primary)
    3009                 :          0 :                         properties |= TYPEDATUM_PROPERTY_PRIMARY;
    3010                 :            : 
    3011         [ #  # ]:          0 :                 if (typdatum->attribute)
    3012                 :          0 :                         properties |= TYPEDATUM_PROPERTY_ATTRIBUTE;
    3013                 :            : 
    3014                 :          0 :                 buf[items++] = cpu_to_le32(properties);
    3015                 :          0 :                 buf[items++] = cpu_to_le32(typdatum->bounds);
    3016                 :            :         } else {
    3017                 :          0 :                 buf[items++] = cpu_to_le32(typdatum->primary);
    3018                 :            :         }
    3019                 :          0 :         BUG_ON(items > ARRAY_SIZE(buf));
    3020                 :          0 :         rc = put_entry(buf, sizeof(u32), items, fp);
    3021                 :          0 :         if (rc)
    3022                 :            :                 return rc;
    3023                 :            : 
    3024                 :          0 :         rc = put_entry(key, 1, len, fp);
    3025                 :          0 :         if (rc)
    3026                 :            :                 return rc;
    3027                 :            : 
    3028                 :          0 :         return 0;
    3029                 :            : }
    3030                 :            : 
    3031                 :          0 : static int user_write(void *vkey, void *datum, void *ptr)
    3032                 :            : {
    3033                 :          0 :         char *key = vkey;
    3034                 :          0 :         struct user_datum *usrdatum = datum;
    3035                 :          0 :         struct policy_data *pd = ptr;
    3036                 :          0 :         struct policydb *p = pd->p;
    3037                 :          0 :         void *fp = pd->fp;
    3038                 :          0 :         __le32 buf[3];
    3039                 :          0 :         size_t items, len;
    3040                 :          0 :         int rc;
    3041                 :            : 
    3042                 :          0 :         len = strlen(key);
    3043                 :          0 :         items = 0;
    3044                 :          0 :         buf[items++] = cpu_to_le32(len);
    3045                 :          0 :         buf[items++] = cpu_to_le32(usrdatum->value);
    3046         [ #  # ]:          0 :         if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
    3047                 :          0 :                 buf[items++] = cpu_to_le32(usrdatum->bounds);
    3048                 :          0 :         BUG_ON(items > ARRAY_SIZE(buf));
    3049                 :          0 :         rc = put_entry(buf, sizeof(u32), items, fp);
    3050                 :          0 :         if (rc)
    3051                 :            :                 return rc;
    3052                 :            : 
    3053                 :          0 :         rc = put_entry(key, 1, len, fp);
    3054                 :          0 :         if (rc)
    3055                 :            :                 return rc;
    3056                 :            : 
    3057                 :          0 :         rc = ebitmap_write(&usrdatum->roles, fp);
    3058         [ #  # ]:          0 :         if (rc)
    3059                 :            :                 return rc;
    3060                 :            : 
    3061                 :          0 :         rc = mls_write_range_helper(&usrdatum->range, fp);
    3062         [ #  # ]:          0 :         if (rc)
    3063                 :            :                 return rc;
    3064                 :            : 
    3065                 :          0 :         rc = mls_write_level(&usrdatum->dfltlevel, fp);
    3066         [ #  # ]:          0 :         if (rc)
    3067                 :          0 :                 return rc;
    3068                 :            : 
    3069                 :            :         return 0;
    3070                 :            : }
    3071                 :            : 
    3072                 :            : static int (*write_f[SYM_NUM]) (void *key, void *datum,
    3073                 :            :                                 void *datap) =
    3074                 :            : {
    3075                 :            :         common_write,
    3076                 :            :         class_write,
    3077                 :            :         role_write,
    3078                 :            :         type_write,
    3079                 :            :         user_write,
    3080                 :            :         cond_write_bool,
    3081                 :            :         sens_write,
    3082                 :            :         cat_write,
    3083                 :            : };
    3084                 :            : 
    3085                 :            : static int ocontext_write(struct policydb *p, struct policydb_compat_info *info,
    3086                 :            :                           void *fp)
    3087                 :            : {
    3088                 :            :         unsigned int i, j, rc;
    3089                 :            :         size_t nel, len;
    3090                 :            :         __be64 prefixbuf[1];
    3091                 :            :         __le32 buf[3];
    3092                 :            :         u32 nodebuf[8];
    3093                 :            :         struct ocontext *c;
    3094                 :            :         for (i = 0; i < info->ocon_num; i++) {
    3095                 :            :                 nel = 0;
    3096                 :            :                 for (c = p->ocontexts[i]; c; c = c->next)
    3097                 :            :                         nel++;
    3098                 :            :                 buf[0] = cpu_to_le32(nel);
    3099                 :            :                 rc = put_entry(buf, sizeof(u32), 1, fp);
    3100                 :            :                 if (rc)
    3101                 :            :                         return rc;
    3102                 :            :                 for (c = p->ocontexts[i]; c; c = c->next) {
    3103                 :            :                         switch (i) {
    3104                 :            :                         case OCON_ISID:
    3105                 :            :                                 buf[0] = cpu_to_le32(c->sid[0]);
    3106                 :            :                                 rc = put_entry(buf, sizeof(u32), 1, fp);
    3107                 :            :                                 if (rc)
    3108                 :            :                                         return rc;
    3109                 :            :                                 rc = context_write(p, &c->context[0], fp);
    3110                 :            :                                 if (rc)
    3111                 :            :                                         return rc;
    3112                 :            :                                 break;
    3113                 :            :                         case OCON_FS:
    3114                 :            :                         case OCON_NETIF:
    3115                 :            :                                 len = strlen(c->u.name);
    3116                 :            :                                 buf[0] = cpu_to_le32(len);
    3117                 :            :                                 rc = put_entry(buf, sizeof(u32), 1, fp);
    3118                 :            :                                 if (rc)
    3119                 :            :                                         return rc;
    3120                 :            :                                 rc = put_entry(c->u.name, 1, len, fp);
    3121                 :            :                                 if (rc)
    3122                 :            :                                         return rc;
    3123                 :            :                                 rc = context_write(p, &c->context[0], fp);
    3124                 :            :                                 if (rc)
    3125                 :            :                                         return rc;
    3126                 :            :                                 rc = context_write(p, &c->context[1], fp);
    3127                 :            :                                 if (rc)
    3128                 :            :                                         return rc;
    3129                 :            :                                 break;
    3130                 :            :                         case OCON_PORT:
    3131                 :            :                                 buf[0] = cpu_to_le32(c->u.port.protocol);
    3132                 :            :                                 buf[1] = cpu_to_le32(c->u.port.low_port);
    3133                 :            :                                 buf[2] = cpu_to_le32(c->u.port.high_port);
    3134                 :            :                                 rc = put_entry(buf, sizeof(u32), 3, fp);
    3135                 :            :                                 if (rc)
    3136                 :            :                                         return rc;
    3137                 :            :                                 rc = context_write(p, &c->context[0], fp);
    3138                 :            :                                 if (rc)
    3139                 :            :                                         return rc;
    3140                 :            :                                 break;
    3141                 :            :                         case OCON_NODE:
    3142                 :            :                                 nodebuf[0] = c->u.node.addr; /* network order */
    3143                 :            :                                 nodebuf[1] = c->u.node.mask; /* network order */
    3144                 :            :                                 rc = put_entry(nodebuf, sizeof(u32), 2, fp);
    3145                 :            :                                 if (rc)
    3146                 :            :                                         return rc;
    3147                 :            :                                 rc = context_write(p, &c->context[0], fp);
    3148                 :            :                                 if (rc)
    3149                 :            :                                         return rc;
    3150                 :            :                                 break;
    3151                 :            :                         case OCON_FSUSE:
    3152                 :            :                                 buf[0] = cpu_to_le32(c->v.behavior);
    3153                 :            :                                 len = strlen(c->u.name);
    3154                 :            :                                 buf[1] = cpu_to_le32(len);
    3155                 :            :                                 rc = put_entry(buf, sizeof(u32), 2, fp);
    3156                 :            :                                 if (rc)
    3157                 :            :                                         return rc;
    3158                 :            :                                 rc = put_entry(c->u.name, 1, len, fp);
    3159                 :            :                                 if (rc)
    3160                 :            :                                         return rc;
    3161                 :            :                                 rc = context_write(p, &c->context[0], fp);
    3162                 :            :                                 if (rc)
    3163                 :            :                                         return rc;
    3164                 :            :                                 break;
    3165                 :            :                         case OCON_NODE6:
    3166                 :            :                                 for (j = 0; j < 4; j++)
    3167                 :            :                                         nodebuf[j] = c->u.node6.addr[j]; /* network order */
    3168                 :            :                                 for (j = 0; j < 4; j++)
    3169                 :            :                                         nodebuf[j + 4] = c->u.node6.mask[j]; /* network order */
    3170                 :            :                                 rc = put_entry(nodebuf, sizeof(u32), 8, fp);
    3171                 :            :                                 if (rc)
    3172                 :            :                                         return rc;
    3173                 :            :                                 rc = context_write(p, &c->context[0], fp);
    3174                 :            :                                 if (rc)
    3175                 :            :                                         return rc;
    3176                 :            :                                 break;
    3177                 :            :                         case OCON_IBPKEY:
    3178                 :            :                                 /* subnet_prefix is in CPU order */
    3179                 :            :                                 prefixbuf[0] = cpu_to_be64(c->u.ibpkey.subnet_prefix);
    3180                 :            : 
    3181                 :            :                                 rc = put_entry(prefixbuf, sizeof(u64), 1, fp);
    3182                 :            :                                 if (rc)
    3183                 :            :                                         return rc;
    3184                 :            : 
    3185                 :            :                                 buf[0] = cpu_to_le32(c->u.ibpkey.low_pkey);
    3186                 :            :                                 buf[1] = cpu_to_le32(c->u.ibpkey.high_pkey);
    3187                 :            : 
    3188                 :            :                                 rc = put_entry(buf, sizeof(u32), 2, fp);
    3189                 :            :                                 if (rc)
    3190                 :            :                                         return rc;
    3191                 :            :                                 rc = context_write(p, &c->context[0], fp);
    3192                 :            :                                 if (rc)
    3193                 :            :                                         return rc;
    3194                 :            :                                 break;
    3195                 :            :                         case OCON_IBENDPORT:
    3196                 :            :                                 len = strlen(c->u.ibendport.dev_name);
    3197                 :            :                                 buf[0] = cpu_to_le32(len);
    3198                 :            :                                 buf[1] = cpu_to_le32(c->u.ibendport.port);
    3199                 :            :                                 rc = put_entry(buf, sizeof(u32), 2, fp);
    3200                 :            :                                 if (rc)
    3201                 :            :                                         return rc;
    3202                 :            :                                 rc = put_entry(c->u.ibendport.dev_name, 1, len, fp);
    3203                 :            :                                 if (rc)
    3204                 :            :                                         return rc;
    3205                 :            :                                 rc = context_write(p, &c->context[0], fp);
    3206                 :            :                                 if (rc)
    3207                 :            :                                         return rc;
    3208                 :            :                                 break;
    3209                 :            :                         }
    3210                 :            :                 }
    3211                 :            :         }
    3212                 :            :         return 0;
    3213                 :            : }
    3214                 :            : 
    3215                 :            : static int genfs_write(struct policydb *p, void *fp)
    3216                 :            : {
    3217                 :            :         struct genfs *genfs;
    3218                 :            :         struct ocontext *c;
    3219                 :            :         size_t len;
    3220                 :            :         __le32 buf[1];
    3221                 :            :         int rc;
    3222                 :            : 
    3223                 :            :         len = 0;
    3224                 :            :         for (genfs = p->genfs; genfs; genfs = genfs->next)
    3225                 :            :                 len++;
    3226                 :            :         buf[0] = cpu_to_le32(len);
    3227                 :            :         rc = put_entry(buf, sizeof(u32), 1, fp);
    3228                 :            :         if (rc)
    3229                 :            :                 return rc;
    3230                 :            :         for (genfs = p->genfs; genfs; genfs = genfs->next) {
    3231                 :            :                 len = strlen(genfs->fstype);
    3232                 :            :                 buf[0] = cpu_to_le32(len);
    3233                 :            :                 rc = put_entry(buf, sizeof(u32), 1, fp);
    3234                 :            :                 if (rc)
    3235                 :            :                         return rc;
    3236                 :            :                 rc = put_entry(genfs->fstype, 1, len, fp);
    3237                 :            :                 if (rc)
    3238                 :            :                         return rc;
    3239                 :            :                 len = 0;
    3240                 :            :                 for (c = genfs->head; c; c = c->next)
    3241                 :            :                         len++;
    3242                 :            :                 buf[0] = cpu_to_le32(len);
    3243                 :            :                 rc = put_entry(buf, sizeof(u32), 1, fp);
    3244                 :            :                 if (rc)
    3245                 :            :                         return rc;
    3246                 :            :                 for (c = genfs->head; c; c = c->next) {
    3247                 :            :                         len = strlen(c->u.name);
    3248                 :            :                         buf[0] = cpu_to_le32(len);
    3249                 :            :                         rc = put_entry(buf, sizeof(u32), 1, fp);
    3250                 :            :                         if (rc)
    3251                 :            :                                 return rc;
    3252                 :            :                         rc = put_entry(c->u.name, 1, len, fp);
    3253                 :            :                         if (rc)
    3254                 :            :                                 return rc;
    3255                 :            :                         buf[0] = cpu_to_le32(c->v.sclass);
    3256                 :            :                         rc = put_entry(buf, sizeof(u32), 1, fp);
    3257                 :            :                         if (rc)
    3258                 :            :                                 return rc;
    3259                 :            :                         rc = context_write(p, &c->context[0], fp);
    3260                 :            :                         if (rc)
    3261                 :            :                                 return rc;
    3262                 :            :                 }
    3263                 :            :         }
    3264                 :            :         return 0;
    3265                 :            : }
    3266                 :            : 
    3267                 :          0 : static int hashtab_cnt(void *key, void *data, void *ptr)
    3268                 :            : {
    3269                 :          0 :         int *cnt = ptr;
    3270                 :          0 :         *cnt = *cnt + 1;
    3271                 :            : 
    3272                 :          0 :         return 0;
    3273                 :            : }
    3274                 :            : 
    3275                 :          0 : static int range_write_helper(void *key, void *data, void *ptr)
    3276                 :            : {
    3277                 :          0 :         __le32 buf[2];
    3278                 :          0 :         struct range_trans *rt = key;
    3279                 :          0 :         struct mls_range *r = data;
    3280                 :          0 :         struct policy_data *pd = ptr;
    3281                 :          0 :         void *fp = pd->fp;
    3282                 :          0 :         struct policydb *p = pd->p;
    3283                 :          0 :         int rc;
    3284                 :            : 
    3285                 :          0 :         buf[0] = cpu_to_le32(rt->source_type);
    3286                 :          0 :         buf[1] = cpu_to_le32(rt->target_type);
    3287         [ #  # ]:          0 :         rc = put_entry(buf, sizeof(u32), 2, fp);
    3288                 :          0 :         if (rc)
    3289                 :            :                 return rc;
    3290         [ #  # ]:          0 :         if (p->policyvers >= POLICYDB_VERSION_RANGETRANS) {
    3291                 :          0 :                 buf[0] = cpu_to_le32(rt->target_class);
    3292                 :          0 :                 rc = put_entry(buf, sizeof(u32), 1, fp);
    3293                 :          0 :                 if (rc)
    3294                 :            :                         return rc;
    3295                 :            :         }
    3296                 :          0 :         rc = mls_write_range_helper(r, fp);
    3297         [ #  # ]:          0 :         if (rc)
    3298                 :          0 :                 return rc;
    3299                 :            : 
    3300                 :            :         return 0;
    3301                 :            : }
    3302                 :            : 
    3303                 :          0 : static int range_write(struct policydb *p, void *fp)
    3304                 :            : {
    3305                 :          0 :         __le32 buf[1];
    3306                 :          0 :         int rc, nel;
    3307                 :          0 :         struct policy_data pd;
    3308                 :            : 
    3309                 :          0 :         pd.p = p;
    3310                 :          0 :         pd.fp = fp;
    3311                 :            : 
    3312                 :            :         /* count the number of entries in the hashtab */
    3313                 :          0 :         nel = 0;
    3314                 :          0 :         rc = hashtab_map(p->range_tr, hashtab_cnt, &nel);
    3315         [ #  # ]:          0 :         if (rc)
    3316                 :            :                 return rc;
    3317                 :            : 
    3318                 :          0 :         buf[0] = cpu_to_le32(nel);
    3319                 :          0 :         rc = put_entry(buf, sizeof(u32), 1, fp);
    3320                 :          0 :         if (rc)
    3321                 :            :                 return rc;
    3322                 :            : 
    3323                 :            :         /* actually write all of the entries */
    3324                 :          0 :         rc = hashtab_map(p->range_tr, range_write_helper, &pd);
    3325         [ #  # ]:          0 :         if (rc)
    3326                 :          0 :                 return rc;
    3327                 :            : 
    3328                 :            :         return 0;
    3329                 :            : }
    3330                 :            : 
    3331                 :          0 : static int filename_write_helper(void *key, void *data, void *ptr)
    3332                 :            : {
    3333                 :          0 :         __le32 buf[4];
    3334                 :          0 :         struct filename_trans *ft = key;
    3335                 :          0 :         struct filename_trans_datum *otype = data;
    3336                 :          0 :         void *fp = ptr;
    3337                 :          0 :         int rc;
    3338                 :          0 :         u32 len;
    3339                 :            : 
    3340                 :          0 :         len = strlen(ft->name);
    3341                 :          0 :         buf[0] = cpu_to_le32(len);
    3342                 :          0 :         rc = put_entry(buf, sizeof(u32), 1, fp);
    3343                 :          0 :         if (rc)
    3344                 :            :                 return rc;
    3345                 :            : 
    3346                 :          0 :         rc = put_entry(ft->name, sizeof(char), len, fp);
    3347                 :          0 :         if (rc)
    3348                 :            :                 return rc;
    3349                 :            : 
    3350                 :          0 :         buf[0] = cpu_to_le32(ft->stype);
    3351                 :          0 :         buf[1] = cpu_to_le32(ft->ttype);
    3352                 :          0 :         buf[2] = cpu_to_le32(ft->tclass);
    3353                 :          0 :         buf[3] = cpu_to_le32(otype->otype);
    3354                 :            : 
    3355                 :          0 :         rc = put_entry(buf, sizeof(u32), 4, fp);
    3356                 :          0 :         if (rc)
    3357                 :            :                 return rc;
    3358                 :            : 
    3359                 :          0 :         return 0;
    3360                 :            : }
    3361                 :            : 
    3362                 :            : static int filename_trans_write(struct policydb *p, void *fp)
    3363                 :            : {
    3364                 :            :         u32 nel;
    3365                 :            :         __le32 buf[1];
    3366                 :            :         int rc;
    3367                 :            : 
    3368                 :            :         if (p->policyvers < POLICYDB_VERSION_FILENAME_TRANS)
    3369                 :            :                 return 0;
    3370                 :            : 
    3371                 :            :         nel = 0;
    3372                 :            :         rc = hashtab_map(p->filename_trans, hashtab_cnt, &nel);
    3373                 :            :         if (rc)
    3374                 :            :                 return rc;
    3375                 :            : 
    3376                 :            :         buf[0] = cpu_to_le32(nel);
    3377                 :            :         rc = put_entry(buf, sizeof(u32), 1, fp);
    3378                 :            :         if (rc)
    3379                 :            :                 return rc;
    3380                 :            : 
    3381                 :            :         rc = hashtab_map(p->filename_trans, filename_write_helper, fp);
    3382                 :            :         if (rc)
    3383                 :            :                 return rc;
    3384                 :            : 
    3385                 :            :         return 0;
    3386                 :            : }
    3387                 :            : 
    3388                 :            : /*
    3389                 :            :  * Write the configuration data in a policy database
    3390                 :            :  * structure to a policy database binary representation
    3391                 :            :  * file.
    3392                 :            :  */
    3393                 :          0 : int policydb_write(struct policydb *p, void *fp)
    3394                 :            : {
    3395                 :          0 :         unsigned int i, num_syms;
    3396                 :          0 :         int rc;
    3397                 :          0 :         __le32 buf[4];
    3398                 :          0 :         u32 config;
    3399                 :          0 :         size_t len;
    3400                 :          0 :         struct policydb_compat_info *info;
    3401                 :            : 
    3402                 :            :         /*
    3403                 :            :          * refuse to write policy older than compressed avtab
    3404                 :            :          * to simplify the writer.  There are other tests dropped
    3405                 :            :          * since we assume this throughout the writer code.  Be
    3406                 :            :          * careful if you ever try to remove this restriction
    3407                 :            :          */
    3408         [ #  # ]:          0 :         if (p->policyvers < POLICYDB_VERSION_AVTAB) {
    3409                 :          0 :                 pr_err("SELinux: refusing to write policy version %d."
    3410                 :            :                        "  Because it is less than version %d\n", p->policyvers,
    3411                 :            :                        POLICYDB_VERSION_AVTAB);
    3412                 :          0 :                 return -EINVAL;
    3413                 :            :         }
    3414                 :            : 
    3415                 :          0 :         config = 0;
    3416         [ #  # ]:          0 :         if (p->mls_enabled)
    3417                 :          0 :                 config |= POLICYDB_CONFIG_MLS;
    3418                 :            : 
    3419         [ #  # ]:          0 :         if (p->reject_unknown)
    3420                 :          0 :                 config |= REJECT_UNKNOWN;
    3421         [ #  # ]:          0 :         if (p->allow_unknown)
    3422                 :          0 :                 config |= ALLOW_UNKNOWN;
    3423                 :            : 
    3424                 :            :         /* Write the magic number and string identifiers. */
    3425                 :          0 :         buf[0] = cpu_to_le32(POLICYDB_MAGIC);
    3426                 :          0 :         len = strlen(POLICYDB_STRING);
    3427                 :          0 :         buf[1] = cpu_to_le32(len);
    3428                 :          0 :         rc = put_entry(buf, sizeof(u32), 2, fp);
    3429                 :          0 :         if (rc)
    3430                 :            :                 return rc;
    3431                 :          0 :         rc = put_entry(POLICYDB_STRING, 1, len, fp);
    3432                 :          0 :         if (rc)
    3433                 :            :                 return rc;
    3434                 :            : 
    3435                 :            :         /* Write the version, config, and table sizes. */
    3436                 :          0 :         info = policydb_lookup_compat(p->policyvers);
    3437         [ #  # ]:          0 :         if (!info) {
    3438                 :          0 :                 pr_err("SELinux: compatibility lookup failed for policy "
    3439                 :            :                     "version %d", p->policyvers);
    3440                 :          0 :                 return -EINVAL;
    3441                 :            :         }
    3442                 :            : 
    3443                 :          0 :         buf[0] = cpu_to_le32(p->policyvers);
    3444                 :          0 :         buf[1] = cpu_to_le32(config);
    3445                 :          0 :         buf[2] = cpu_to_le32(info->sym_num);
    3446                 :          0 :         buf[3] = cpu_to_le32(info->ocon_num);
    3447                 :            : 
    3448         [ #  # ]:          0 :         rc = put_entry(buf, sizeof(u32), 4, fp);
    3449                 :          0 :         if (rc)
    3450                 :            :                 return rc;
    3451                 :            : 
    3452         [ #  # ]:          0 :         if (p->policyvers >= POLICYDB_VERSION_POLCAP) {
    3453                 :          0 :                 rc = ebitmap_write(&p->policycaps, fp);
    3454         [ #  # ]:          0 :                 if (rc)
    3455                 :            :                         return rc;
    3456                 :            :         }
    3457                 :            : 
    3458         [ #  # ]:          0 :         if (p->policyvers >= POLICYDB_VERSION_PERMISSIVE) {
    3459                 :          0 :                 rc = ebitmap_write(&p->permissive_map, fp);
    3460         [ #  # ]:          0 :                 if (rc)
    3461                 :            :                         return rc;
    3462                 :            :         }
    3463                 :            : 
    3464                 :          0 :         num_syms = info->sym_num;
    3465         [ #  # ]:          0 :         for (i = 0; i < num_syms; i++) {
    3466                 :          0 :                 struct policy_data pd;
    3467                 :            : 
    3468                 :          0 :                 pd.fp = fp;
    3469                 :          0 :                 pd.p = p;
    3470                 :            : 
    3471                 :          0 :                 buf[0] = cpu_to_le32(p->symtab[i].nprim);
    3472                 :          0 :                 buf[1] = cpu_to_le32(p->symtab[i].table->nel);
    3473                 :            : 
    3474                 :          0 :                 rc = put_entry(buf, sizeof(u32), 2, fp);
    3475                 :          0 :                 if (rc)
    3476                 :          0 :                         return rc;
    3477                 :          0 :                 rc = hashtab_map(p->symtab[i].table, write_f[i], &pd);
    3478         [ #  # ]:          0 :                 if (rc)
    3479                 :          0 :                         return rc;
    3480                 :            :         }
    3481                 :            : 
    3482                 :          0 :         rc = avtab_write(p, &p->te_avtab, fp);
    3483         [ #  # ]:          0 :         if (rc)
    3484                 :            :                 return rc;
    3485                 :            : 
    3486                 :          0 :         rc = cond_write_list(p, p->cond_list, fp);
    3487         [ #  # ]:          0 :         if (rc)
    3488                 :            :                 return rc;
    3489                 :            : 
    3490                 :          0 :         rc = role_trans_write(p, fp);
    3491         [ #  # ]:          0 :         if (rc)
    3492                 :            :                 return rc;
    3493                 :            : 
    3494                 :          0 :         rc = role_allow_write(p->role_allow, fp);
    3495         [ #  # ]:          0 :         if (rc)
    3496                 :            :                 return rc;
    3497                 :            : 
    3498                 :          0 :         rc = filename_trans_write(p, fp);
    3499         [ #  # ]:          0 :         if (rc)
    3500                 :            :                 return rc;
    3501                 :            : 
    3502                 :          0 :         rc = ocontext_write(p, info, fp);
    3503         [ #  # ]:          0 :         if (rc)
    3504                 :            :                 return rc;
    3505                 :            : 
    3506                 :          0 :         rc = genfs_write(p, fp);
    3507         [ #  # ]:          0 :         if (rc)
    3508                 :            :                 return rc;
    3509                 :            : 
    3510                 :          0 :         rc = range_write(p, fp);
    3511         [ #  # ]:          0 :         if (rc)
    3512                 :            :                 return rc;
    3513                 :            : 
    3514         [ #  # ]:          0 :         for (i = 0; i < p->p_types.nprim; i++) {
    3515                 :          0 :                 struct ebitmap *e = &p->type_attr_map_array[i];
    3516                 :            : 
    3517                 :          0 :                 rc = ebitmap_write(e, fp);
    3518         [ #  # ]:          0 :                 if (rc)
    3519                 :          0 :                         return rc;
    3520                 :            :         }
    3521                 :            : 
    3522                 :            :         return 0;
    3523                 :            : }

Generated by: LCOV version 1.14