LCOV - code coverage report
Current view: top level - fs/lockd - svcshare.c (source / functions) Hit Total Coverage
Test: coverage.info Lines: 0 38 0.0 %
Date: 2014-02-18 Functions: 0 3 0.0 %
Branches: 0 30 0.0 %

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  * linux/fs/lockd/svcshare.c
       3                 :            :  *
       4                 :            :  * Management of DOS shares.
       5                 :            :  *
       6                 :            :  * Copyright (C) 1996 Olaf Kirch <okir@monad.swb.de>
       7                 :            :  */
       8                 :            : 
       9                 :            : #include <linux/time.h>
      10                 :            : #include <linux/unistd.h>
      11                 :            : #include <linux/string.h>
      12                 :            : #include <linux/slab.h>
      13                 :            : 
      14                 :            : #include <linux/sunrpc/clnt.h>
      15                 :            : #include <linux/sunrpc/svc.h>
      16                 :            : #include <linux/lockd/lockd.h>
      17                 :            : #include <linux/lockd/share.h>
      18                 :            : 
      19                 :            : static inline int
      20                 :            : nlm_cmp_owner(struct nlm_share *share, struct xdr_netobj *oh)
      21                 :            : {
      22                 :          0 :         return share->s_owner.len == oh->len
      23 [ #  # ][ #  # ]:          0 :             && !memcmp(share->s_owner.data, oh->data, oh->len);
         [ #  # ][ #  # ]
      24                 :            : }
      25                 :            : 
      26                 :            : __be32
      27                 :          0 : nlmsvc_share_file(struct nlm_host *host, struct nlm_file *file,
      28                 :            :                         struct nlm_args *argp)
      29                 :            : {
      30                 :          0 :         struct nlm_share        *share;
      31                 :            :         struct xdr_netobj       *oh = &argp->lock.oh;
      32                 :            :         u8                      *ohdata;
      33                 :            : 
      34         [ #  # ]:          0 :         for (share = file->f_shares; share; share = share->s_next) {
      35 [ #  # ][ #  # ]:          0 :                 if (share->s_host == host && nlm_cmp_owner(share, oh))
      36                 :            :                         goto update;
      37         [ #  # ]:          0 :                 if ((argp->fsm_access & share->s_mode)
      38         [ #  # ]:          0 :                  || (argp->fsm_mode   & share->s_access ))
      39                 :            :                         return nlm_lck_denied;
      40                 :            :         }
      41                 :            : 
      42                 :          0 :         share = kmalloc(sizeof(*share) + oh->len,
      43                 :            :                                                 GFP_KERNEL);
      44         [ #  # ]:          0 :         if (share == NULL)
      45                 :            :                 return nlm_lck_denied_nolocks;
      46                 :            : 
      47                 :            :         /* Copy owner handle */
      48                 :          0 :         ohdata = (u8 *) (share + 1);
      49                 :          0 :         memcpy(ohdata, oh->data, oh->len);
      50                 :            : 
      51                 :          0 :         share->s_file            = file;
      52                 :          0 :         share->s_host       = host;
      53                 :          0 :         share->s_owner.data = ohdata;
      54                 :          0 :         share->s_owner.len  = oh->len;
      55                 :          0 :         share->s_next       = file->f_shares;
      56                 :          0 :         file->f_shares      = share;
      57                 :            : 
      58                 :            : update:
      59                 :          0 :         share->s_access = argp->fsm_access;
      60                 :          0 :         share->s_mode   = argp->fsm_mode;
      61                 :          0 :         return nlm_granted;
      62                 :            : }
      63                 :            : 
      64                 :            : /*
      65                 :            :  * Delete a share.
      66                 :            :  */
      67                 :            : __be32
      68                 :          0 : nlmsvc_unshare_file(struct nlm_host *host, struct nlm_file *file,
      69                 :            :                         struct nlm_args *argp)
      70                 :            : {
      71                 :          0 :         struct nlm_share        *share, **shpp;
      72                 :            :         struct xdr_netobj       *oh = &argp->lock.oh;
      73                 :            : 
      74         [ #  # ]:          0 :         for (shpp = &file->f_shares; (share = *shpp) != NULL;
      75                 :          0 :                                         shpp = &share->s_next) {
      76 [ #  # ][ #  # ]:          0 :                 if (share->s_host == host && nlm_cmp_owner(share, oh)) {
      77                 :          0 :                         *shpp = share->s_next;
      78                 :          0 :                         kfree(share);
      79                 :          0 :                         return nlm_granted;
      80                 :            :                 }
      81                 :            :         }
      82                 :            : 
      83                 :            :         /* X/Open spec says return success even if there was no
      84                 :            :          * corresponding share. */
      85                 :            :         return nlm_granted;
      86                 :            : }
      87                 :            : 
      88                 :            : /*
      89                 :            :  * Traverse all shares for a given file, and delete
      90                 :            :  * those owned by the given (type of) host
      91                 :            :  */
      92                 :          0 : void nlmsvc_traverse_shares(struct nlm_host *host, struct nlm_file *file,
      93                 :            :                 nlm_host_match_fn_t match)
      94                 :            : {
      95                 :            :         struct nlm_share        *share, **shpp;
      96                 :            : 
      97                 :          0 :         shpp = &file->f_shares;
      98         [ #  # ]:          0 :         while ((share = *shpp) !=  NULL) {
      99         [ #  # ]:          0 :                 if (match(share->s_host, host)) {
     100                 :          0 :                         *shpp = share->s_next;
     101                 :          0 :                         kfree(share);
     102                 :          0 :                         continue;
     103                 :            :                 }
     104                 :          0 :                 shpp = &share->s_next;
     105                 :            :         }
     106                 :          0 : }

Generated by: LCOV version 1.9