idx int64 | project string | commit_id string | project_url string | commit_url string | commit_message string | target int64 | func string | func_hash float64 | file_name string | file_hash float64 | cwe list | cve string | cve_desc string | nvd_url string |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
25,448 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int nfs4_wait_bit_killable(void *word)
{
if (fatal_signal_pending(current))
return -ERESTARTSYS;
schedule();
return 0;
}
| 17,703,561,749,715,090,000,000,000,000,000,000,000 | nfs4proc.c | 163,538,799,766,705,700,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,449 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static void renew_lease(const struct nfs_server *server, unsigned long timestamp)
{
struct nfs_client *clp = server->nfs_client;
spin_lock(&clp->cl_lock);
if (time_before(clp->cl_last_renewal,timestamp))
clp->cl_last_renewal = timestamp;
spin_unlock(&clp->cl_lock);
}
| 71,387,991,070,820,890,000,000,000,000,000,000,000 | nfs4proc.c | 163,538,799,766,705,700,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,450 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static void update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo)
{
struct nfs_inode *nfsi = NFS_I(dir);
spin_lock(&dir->i_lock);
nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_DATA;
if (!cinfo->atomic || cinfo->before != nfsi->change_attr)
nfs_force_lookup_re... | 274,808,644,092,275,000,000,000,000,000,000,000,000 | nfs4proc.c | 163,538,799,766,705,700,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,451 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | __nfs4_find_lock_state(struct nfs4_state *state, fl_owner_t fl_owner)
{
struct nfs4_lock_state *pos;
list_for_each_entry(pos, &state->lock_states, ls_locks) {
if (pos->ls_owner != fl_owner)
continue;
atomic_inc(&pos->ls_count);
return pos;
}
return NULL;
}
| 313,502,590,274,677,730,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,452 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | __nfs4_find_state_byowner(struct inode *inode, struct nfs4_state_owner *owner)
{
struct nfs_inode *nfsi = NFS_I(inode);
struct nfs4_state *state;
list_for_each_entry(state, &nfsi->open_states, inode_states) {
if (state->owner != owner)
continue;
if (atomic_inc_not_zero(&state->count))
return state;
}
re... | 288,848,979,393,142,560,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,453 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static struct nfs4_lock_state *nfs4_alloc_lock_state(struct nfs4_state *state, fl_owner_t fl_owner)
{
struct nfs4_lock_state *lsp;
struct nfs_client *clp = state->owner->so_client;
lsp = kzalloc(sizeof(*lsp), GFP_KERNEL);
if (lsp == NULL)
return NULL;
rpc_init_wait_queue(&lsp->ls_sequence.wait, "lock_seqid_wait... | 293,350,071,694,528,860,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,454 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | nfs4_alloc_open_state(void)
{
struct nfs4_state *state;
state = kzalloc(sizeof(*state), GFP_KERNEL);
if (!state)
return NULL;
atomic_set(&state->count, 1);
INIT_LIST_HEAD(&state->lock_states);
spin_lock_init(&state->state_lock);
seqlock_init(&state->seqlock);
return state;
}
| 58,933,613,911,845,170,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,455 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | nfs4_alloc_state_owner(void)
{
struct nfs4_state_owner *sp;
sp = kzalloc(sizeof(*sp),GFP_KERNEL);
if (!sp)
return NULL;
spin_lock_init(&sp->so_lock);
INIT_LIST_HEAD(&sp->so_states);
INIT_LIST_HEAD(&sp->so_delegations);
rpc_init_wait_queue(&sp->so_sequence.wait, "Seqid_waitqueue");
sp->so_seqid.sequence = &sp... | 177,271,122,119,716,200,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,456 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int nfs4_check_lease(struct nfs_client *clp)
{
struct rpc_cred *cred;
int status = -NFS4ERR_EXPIRED;
/* Is the client already known to have an expired lease? */
if (test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
return 0;
cred = nfs4_get_renew_cred(clp);
if (cred == NULL) {
cred = nfs4_get_setclien... | 260,912,634,174,681,720,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,457 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static void nfs4_clear_open_state(struct nfs4_state *state)
{
struct nfs4_lock_state *lock;
clear_bit(NFS_DELEGATED_STATE, &state->flags);
clear_bit(NFS_O_RDONLY_STATE, &state->flags);
clear_bit(NFS_O_WRONLY_STATE, &state->flags);
clear_bit(NFS_O_RDWR_STATE, &state->flags);
list_for_each_entry(lock, &state->lock... | 22,751,489,154,062,030,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,458 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static void nfs4_clear_state_manager_bit(struct nfs_client *clp)
{
smp_mb__before_clear_bit();
clear_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state);
smp_mb__after_clear_bit();
wake_up_bit(&clp->cl_state, NFS4CLNT_MANAGER_RUNNING);
rpc_wake_up(&clp->cl_rpcwaitq);
}
| 321,741,807,324,178,900,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,459 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | void nfs4_copy_stateid(nfs4_stateid *dst, struct nfs4_state *state, fl_owner_t fl_owner)
{
struct nfs4_lock_state *lsp;
int seq;
do {
seq = read_seqbegin(&state->seqlock);
memcpy(dst, &state->stateid, sizeof(*dst));
} while (read_seqretry(&state->seqlock, seq));
if (test_bit(LK_STATE_IN_USE, &state->flags) ==... | 19,445,305,222,482,162,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,460 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int nfs4_do_reclaim(struct nfs_client *clp, const struct nfs4_state_recovery_ops *ops)
{
struct rb_node *pos;
int status = 0;
restart:
spin_lock(&clp->cl_lock);
for (pos = rb_first(&clp->cl_state_owners); pos != NULL; pos = rb_next(pos)) {
struct nfs4_state_owner *sp = rb_entry(pos, struct nfs4_state_owne... | 32,239,523,550,001,025,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,461 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | nfs4_drop_state_owner(struct nfs4_state_owner *sp)
{
if (!RB_EMPTY_NODE(&sp->so_client_node)) {
struct nfs_client *clp = sp->so_client;
spin_lock(&clp->cl_lock);
rb_erase(&sp->so_client_node, &clp->cl_state_owners);
RB_CLEAR_NODE(&sp->so_client_node);
spin_unlock(&clp->cl_lock);
}
}
| 218,244,387,504,879,420,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,462 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | nfs4_find_state_owner(struct nfs_server *server, struct rpc_cred *cred)
{
struct nfs_client *clp = server->nfs_client;
struct rb_node **p = &clp->cl_state_owners.rb_node,
*parent = NULL;
struct nfs4_state_owner *sp, *res = NULL;
while (*p != NULL) {
parent = *p;
sp = rb_entry(parent, struct nfs4_state... | 104,487,236,028,869,000,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,463 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static void nfs4_fl_copy_lock(struct file_lock *dst, struct file_lock *src)
{
struct nfs4_lock_state *lsp = src->fl_u.nfs4_fl.owner;
dst->fl_u.nfs4_fl.owner = lsp;
atomic_inc(&lsp->ls_count);
}
| 7,165,299,950,041,533,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,464 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static void nfs4_fl_release_lock(struct file_lock *fl)
{
nfs4_put_lock_state(fl->fl_u.nfs4_fl.owner);
}
| 146,440,515,828,781,300,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,465 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static void nfs4_free_lock_state(struct nfs4_lock_state *lsp)
{
struct nfs_client *clp = lsp->ls_state->owner->so_client;
spin_lock(&clp->cl_lock);
nfs_free_unique_id(&clp->cl_lockowner_id, &lsp->ls_id);
spin_unlock(&clp->cl_lock);
rpc_destroy_wait_queue(&lsp->ls_sequence.wait);
kfree(lsp);
}
| 270,278,270,473,529,400,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,466 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | nfs4_free_open_state(struct nfs4_state *state)
{
kfree(state);
}
| 328,687,687,940,006,670,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,467 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static struct nfs4_lock_state *nfs4_get_lock_state(struct nfs4_state *state, fl_owner_t owner)
{
struct nfs4_lock_state *lsp, *new = NULL;
for(;;) {
spin_lock(&state->state_lock);
lsp = __nfs4_find_lock_state(state, owner);
if (lsp != NULL)
break;
if (new != NULL) {
new->ls_state = state;
list_add(... | 29,745,022,997,416,600,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,468 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static struct rpc_cred *nfs4_get_machine_cred_locked(struct nfs_client *clp)
{
struct rpc_cred *cred = NULL;
if (clp->cl_machine_cred != NULL)
cred = get_rpccred(clp->cl_machine_cred);
return cred;
}
| 189,005,287,565,305,930,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,469 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | nfs4_get_open_state(struct inode *inode, struct nfs4_state_owner *owner)
{
struct nfs4_state *state, *new;
struct nfs_inode *nfsi = NFS_I(inode);
spin_lock(&inode->i_lock);
state = __nfs4_find_state_byowner(inode, owner);
spin_unlock(&inode->i_lock);
if (state)
goto out;
new = nfs4_alloc_open_state();
spin_l... | 145,606,434,896,992,400,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,470 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static struct rpc_cred *nfs4_get_renew_cred(struct nfs_client *clp)
{
struct rpc_cred *cred;
spin_lock(&clp->cl_lock);
cred = nfs4_get_renew_cred_locked(clp);
spin_unlock(&clp->cl_lock);
return cred;
}
| 267,062,718,848,990,530,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,471 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static struct rpc_cred *nfs4_get_setclientid_cred(struct nfs_client *clp)
{
struct nfs4_state_owner *sp;
struct rb_node *pos;
struct rpc_cred *cred;
spin_lock(&clp->cl_lock);
cred = nfs4_get_machine_cred_locked(clp);
if (cred != NULL)
goto out;
pos = rb_first(&clp->cl_state_owners);
if (pos != NULL) {
sp =... | 247,355,920,974,677,870,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,472 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | struct nfs4_state_owner *nfs4_get_state_owner(struct nfs_server *server, struct rpc_cred *cred)
{
struct nfs_client *clp = server->nfs_client;
struct nfs4_state_owner *sp, *new;
spin_lock(&clp->cl_lock);
sp = nfs4_find_state_owner(server, cred);
spin_unlock(&clp->cl_lock);
if (sp != NULL)
return sp;
new = nfs... | 330,041,562,019,078,250,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,473 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int nfs4_init_client(struct nfs_client *clp, struct rpc_cred *cred)
{
int status = nfs4_proc_setclientid(clp, NFS4_CALLBACK,
nfs_callback_tcpport, cred);
if (status == 0)
status = nfs4_proc_setclientid_confirm(clp, cred);
if (status == 0)
nfs4_schedule_state_renewal(clp);
return status;
}
| 269,600,525,805,280,020,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,474 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | nfs4_insert_state_owner(struct nfs_client *clp, struct nfs4_state_owner *new)
{
struct rb_node **p = &clp->cl_state_owners.rb_node,
*parent = NULL;
struct nfs4_state_owner *sp;
while (*p != NULL) {
parent = *p;
sp = rb_entry(parent, struct nfs4_state_owner, so_client_node);
if (new->so_server < sp->... | 232,362,283,009,926,200,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,475 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | void nfs4_put_lock_state(struct nfs4_lock_state *lsp)
{
struct nfs4_state *state;
if (lsp == NULL)
return;
state = lsp->ls_state;
if (!atomic_dec_and_lock(&lsp->ls_count, &state->state_lock))
return;
list_del(&lsp->ls_locks);
if (list_empty(&state->lock_states))
clear_bit(LK_STATE_IN_USE, &state->flags);
... | 239,594,849,651,517,570,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,476 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | void nfs4_put_open_state(struct nfs4_state *state)
{
struct inode *inode = state->inode;
struct nfs4_state_owner *owner = state->owner;
if (!atomic_dec_and_lock(&state->count, &owner->so_lock))
return;
spin_lock(&inode->i_lock);
list_del(&state->inode_states);
list_del(&state->open_states);
spin_unlock(&inode... | 134,564,821,729,624,940,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,477 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | void nfs4_put_state_owner(struct nfs4_state_owner *sp)
{
struct nfs_client *clp = sp->so_client;
struct rpc_cred *cred = sp->so_cred;
if (!atomic_dec_and_lock(&sp->so_count, &clp->cl_lock))
return;
nfs4_remove_state_owner(clp, sp);
spin_unlock(&clp->cl_lock);
rpc_destroy_wait_queue(&sp->so_sequence.wait);
put... | 60,321,161,122,034,520,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,478 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int nfs4_reclaim_lease(struct nfs_client *clp)
{
struct rpc_cred *cred;
int status = -ENOENT;
cred = nfs4_get_setclientid_cred(clp);
if (cred != NULL) {
status = nfs4_init_client(clp, cred);
put_rpccred(cred);
/* Handle case where the user hasn't set up machine creds */
if (status == -EACCES && cred... | 13,397,525,678,113,927,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,479 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int nfs4_reclaim_locks(struct nfs4_state *state, const struct nfs4_state_recovery_ops *ops)
{
struct inode *inode = state->inode;
struct nfs_inode *nfsi = NFS_I(inode);
struct file_lock *fl;
int status = 0;
down_write(&nfsi->rwsem);
for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
if (!(fl->fl_... | 320,287,282,964,156,230,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,480 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int nfs4_reclaim_open_state(struct nfs4_state_owner *sp, const struct nfs4_state_recovery_ops *ops)
{
struct nfs4_state *state;
struct nfs4_lock_state *lock;
int status = 0;
/* Note: we rely on the sp->so_states list being ordered
* so that we always reclaim open(O_RDWR) and/or open(O_WRITE)
* states f... | 141,409,789,752,017,100,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,481 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static void nfs4_recovery_handle_error(struct nfs_client *clp, int error)
{
switch (error) {
case -NFS4ERR_CB_PATH_DOWN:
nfs_handle_cb_pathdown(clp);
break;
case -NFS4ERR_STALE_CLIENTID:
case -NFS4ERR_LEASE_MOVED:
set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
nfs4_state_start_reclaim_reboot(clp);
... | 56,793,280,359,763,150,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,482 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | nfs4_remove_state_owner(struct nfs_client *clp, struct nfs4_state_owner *sp)
{
if (!RB_EMPTY_NODE(&sp->so_client_node))
rb_erase(&sp->so_client_node, &clp->cl_state_owners);
nfs_free_unique_id(&clp->cl_openowner_id, &sp->so_owner_id);
}
| 145,408,363,122,393,500,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,483 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int nfs4_run_state_manager(void *ptr)
{
struct nfs_client *clp = ptr;
allow_signal(SIGKILL);
nfs4_state_manager(clp);
nfs_put_client(clp);
module_put_and_exit(0);
return 0;
}
| 138,269,364,765,929,800,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,484 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | void nfs4_schedule_state_manager(struct nfs_client *clp)
{
struct task_struct *task;
if (test_and_set_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) != 0)
return;
__module_get(THIS_MODULE);
atomic_inc(&clp->cl_count);
task = kthread_run(nfs4_run_state_manager, clp, "%s-manager",
rpc_peeraddr2str(clp->cl_rpcc... | 247,163,364,500,372,650,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,485 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | void nfs4_schedule_state_recovery(struct nfs_client *clp)
{
if (!clp)
return;
if (!test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
set_bit(NFS4CLNT_CHECK_LEASE, &clp->cl_state);
nfs4_schedule_state_manager(clp);
}
| 105,006,395,982,090,650,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,486 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | int nfs4_set_lock_state(struct nfs4_state *state, struct file_lock *fl)
{
struct nfs4_lock_state *lsp;
if (fl->fl_ops != NULL)
return 0;
lsp = nfs4_get_lock_state(state, fl->fl_owner);
if (lsp == NULL)
return -ENOMEM;
fl->fl_u.nfs4_fl.owner = lsp;
fl->fl_ops = &nfs4_fl_lock_ops;
return 0;
}
| 279,514,832,089,119,900,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,487 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static void nfs4_state_end_reclaim_nograce(struct nfs_client *clp)
{
clear_bit(NFS4CLNT_RECLAIM_NOGRACE, &clp->cl_state);
}
| 242,335,649,786,383,150,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,488 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static void nfs4_state_end_reclaim_reboot(struct nfs_client *clp)
{
struct nfs4_state_owner *sp;
struct rb_node *pos;
struct nfs4_state *state;
if (!test_and_clear_bit(NFS4CLNT_RECLAIM_REBOOT, &clp->cl_state))
return;
for (pos = rb_first(&clp->cl_state_owners); pos != NULL; pos = rb_next(pos)) {
sp = rb_entr... | 226,405,155,337,632,480,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,489 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | int nfs4_state_mark_reclaim_nograce(struct nfs_client *clp, struct nfs4_state *state)
{
set_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags);
clear_bit(NFS_STATE_RECLAIM_REBOOT, &state->flags);
set_bit(NFS_OWNER_RECLAIM_NOGRACE, &state->owner->so_flags);
set_bit(NFS4CLNT_RECLAIM_NOGRACE, &clp->cl_state);
return 1;
}
| 106,657,910,788,140,570,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,490 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int nfs4_state_mark_reclaim_reboot(struct nfs_client *clp, struct nfs4_state *state)
{
set_bit(NFS_STATE_RECLAIM_REBOOT, &state->flags);
/* Don't recover state that expired before the reboot */
if (test_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags)) {
clear_bit(NFS_STATE_RECLAIM_REBOOT, &state->flags);
r... | 246,830,379,056,932,760,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,491 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static void nfs4_state_start_reclaim_nograce(struct nfs_client *clp)
{
nfs_delegation_clear_all(clp);
nfs4_state_mark_reclaim_helper(clp, nfs4_state_mark_reclaim_nograce);
}
| 223,735,733,982,940,250,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,492 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static void nfs4_state_start_reclaim_reboot(struct nfs_client *clp)
{
/* Mark all delegations for reclaim */
nfs_delegation_mark_reclaim(clp);
nfs4_state_mark_reclaim_helper(clp, nfs4_state_mark_reclaim_reboot);
}
| 233,234,438,081,812,170,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,493 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | struct nfs_seqid *nfs_alloc_seqid(struct nfs_seqid_counter *counter)
{
struct nfs_seqid *new;
new = kmalloc(sizeof(*new), GFP_KERNEL);
if (new != NULL) {
new->sequence = counter;
INIT_LIST_HEAD(&new->list);
}
return new;
}
| 170,820,781,953,581,880,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,494 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static void nfs_delegation_clear_all(struct nfs_client *clp)
{
nfs_delegation_mark_reclaim(clp);
nfs_delegation_reap_unclaimed(clp);
}
| 94,866,875,299,183,230,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,495 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | void nfs_free_seqid(struct nfs_seqid *seqid)
{
if (!list_empty(&seqid->list)) {
struct rpc_sequence *sequence = seqid->sequence->sequence;
spin_lock(&sequence->lock);
list_del(&seqid->list);
spin_unlock(&sequence->lock);
rpc_wake_up(&sequence->wait);
}
kfree(seqid);
}
| 106,249,802,738,528,950,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,496 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static void nfs_free_unique_id(struct rb_root *root, struct nfs_unique_id *id)
{
rb_erase(&id->rb_node, root);
}
| 210,589,306,957,612,750,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,497 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | void nfs_increment_open_seqid(int status, struct nfs_seqid *seqid)
{
if (status == -NFS4ERR_BAD_SEQID) {
struct nfs4_state_owner *sp = container_of(seqid->sequence,
struct nfs4_state_owner, so_seqid);
nfs4_drop_state_owner(sp);
}
nfs_increment_seqid(status, seqid);
}
| 109,901,822,797,452,860,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,498 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static void nfs_increment_seqid(int status, struct nfs_seqid *seqid)
{
BUG_ON(list_first_entry(&seqid->sequence->sequence->list, struct nfs_seqid, list) != seqid);
switch (status) {
case 0:
break;
case -NFS4ERR_BAD_SEQID:
if (seqid->sequence->flags & NFS_SEQID_CONFIRMED)
return;
printk(KERN_WARNING "... | 48,811,460,100,217,370,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,499 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | int nfs_wait_on_sequence(struct nfs_seqid *seqid, struct rpc_task *task)
{
struct rpc_sequence *sequence = seqid->sequence->sequence;
int status = 0;
spin_lock(&sequence->lock);
if (list_empty(&seqid->list))
list_add_tail(&seqid->list, &sequence->list);
if (list_first_entry(&sequence->list, struct nfs_seqid, li... | 206,012,736,462,051,880,000,000,000,000,000,000,000 | nfs4state.c | 196,144,010,422,416,180,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,500 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_access(struct xdr_stream *xdr, struct nfs4_accessres *access)
{
__be32 *p;
uint32_t supp, acc;
int status;
status = decode_op_hdr(xdr, OP_ACCESS);
if (status)
return status;
READ_BUF(8);
READ32(supp);
READ32(acc);
access->supported = supp;
access->access = acc;
return 0;
}
| 51,999,284,348,536,850,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,501 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_ace(struct xdr_stream *xdr, void *ace, struct nfs_client *clp)
{
__be32 *p;
unsigned int strlen;
char *str;
READ_BUF(12);
return decode_opaque_inline(xdr, &strlen, &str);
}
| 284,118,422,846,531,920,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,502 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_aclsupport(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
{
__be32 *p;
*res = ACL4_SUPPORT_ALLOW_ACL|ACL4_SUPPORT_DENY_ACL;
if (unlikely(bitmap[0] & (FATTR4_WORD0_ACLSUPPORT - 1U)))
return -EIO;
if (likely(bitmap[0] & FATTR4_WORD0_ACLSUPPORT)) {
READ_BUF(4);
READ32(*res);
b... | 277,105,299,439,217,100,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,503 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_bitmap(struct xdr_stream *xdr, uint32_t *bitmap)
{
uint32_t bmlen;
__be32 *p;
READ_BUF(4);
READ32(bmlen);
bitmap[0] = bitmap[1] = 0;
READ_BUF((bmlen << 2));
if (bmlen > 0) {
READ32(bitmap[0]);
if (bmlen > 1)
READ32(bitmap[1]);
}
return 0;
}
| 244,277,711,871,231,960,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,504 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
{
__be32 *p;
*fileid = 0;
if (unlikely(bitmap[0] & (FATTR4_WORD0_FILEID - 1U)))
return -EIO;
if (likely(bitmap[0] & FATTR4_WORD0_FILEID)) {
READ_BUF(8);
READ64(*fileid);
bitmap[0] &= ~FATTR4_WORD0_FILEID;
}
dprintk(... | 175,725,179,580,875,750,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,505 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_files_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
{
__be32 *p;
int status = 0;
*res = 0;
if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_AVAIL - 1U)))
return -EIO;
if (likely(bitmap[0] & FATTR4_WORD0_FILES_AVAIL)) {
READ_BUF(8);
READ64(*res);
bitmap[0] &= ~FATTR4_WOR... | 49,673,807,155,182,090,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,506 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_files_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
{
__be32 *p;
int status = 0;
*res = 0;
if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_FREE - 1U)))
return -EIO;
if (likely(bitmap[0] & FATTR4_WORD0_FILES_FREE)) {
READ_BUF(8);
READ64(*res);
bitmap[0] &= ~FATTR4_WORD0_... | 20,260,530,616,922,544,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,507 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_files_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
{
__be32 *p;
int status = 0;
*res = 0;
if (unlikely(bitmap[0] & (FATTR4_WORD0_FILES_TOTAL - 1U)))
return -EIO;
if (likely(bitmap[0] & FATTR4_WORD0_FILES_TOTAL)) {
READ_BUF(8);
READ64(*res);
bitmap[0] &= ~FATTR4_WOR... | 197,740,625,407,488,880,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,508 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_fs_locations(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs4_fs_locations *res)
{
int n;
__be32 *p;
int status = -EIO;
if (unlikely(bitmap[0] & (FATTR4_WORD0_FS_LOCATIONS -1U)))
goto out;
status = 0;
if (unlikely(!(bitmap[0] & FATTR4_WORD0_FS_LOCATIONS)))
goto out;
dprintk("%s: ... | 239,012,804,586,089,320,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,509 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_fsid(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_fsid *fsid)
{
__be32 *p;
fsid->major = 0;
fsid->minor = 0;
if (unlikely(bitmap[0] & (FATTR4_WORD0_FSID - 1U)))
return -EIO;
if (likely(bitmap[0] & FATTR4_WORD0_FSID)) {
READ_BUF(16);
READ64(fsid->major);
READ64(fsid->minor);
... | 305,106,982,424,860,400,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,510 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_group(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_client *clp, uint32_t *gid)
{
uint32_t len;
__be32 *p;
*gid = -2;
if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER_GROUP - 1U)))
return -EIO;
if (likely(bitmap[1] & FATTR4_WORD1_OWNER_GROUP)) {
READ_BUF(4);
READ32(len);
READ_BUF... | 254,607,448,419,261,800,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,511 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_lease_time(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
{
__be32 *p;
*res = 60;
if (unlikely(bitmap[0] & (FATTR4_WORD0_LEASE_TIME - 1U)))
return -EIO;
if (likely(bitmap[0] & FATTR4_WORD0_LEASE_TIME)) {
READ_BUF(4);
READ32(*res);
bitmap[0] &= ~FATTR4_WORD0_LEASE_TIME;
}
... | 150,957,985,891,525,280,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,512 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static inline int decode_attr_length(struct xdr_stream *xdr, uint32_t *attrlen, __be32 **savep)
{
__be32 *p;
READ_BUF(4);
READ32(*attrlen);
*savep = xdr->p;
return 0;
}
| 21,874,635,049,454,740,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,513 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_link_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
{
__be32 *p;
*res = 0;
if (unlikely(bitmap[0] & (FATTR4_WORD0_LINK_SUPPORT - 1U)))
return -EIO;
if (likely(bitmap[0] & FATTR4_WORD0_LINK_SUPPORT)) {
READ_BUF(4);
READ32(*res);
bitmap[0] &= ~FATTR4_WORD0_LINK_SUPPOR... | 50,325,890,961,630,500,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,514 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_maxfilesize(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
{
__be32 *p;
int status = 0;
*res = 0;
if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXFILESIZE - 1U)))
return -EIO;
if (likely(bitmap[0] & FATTR4_WORD0_MAXFILESIZE)) {
READ_BUF(8);
READ64(*res);
bitmap[0] &= ~FATTR4_WOR... | 4,960,669,331,360,224,700,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,515 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_maxlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxlink)
{
__be32 *p;
int status = 0;
*maxlink = 1;
if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXLINK - 1U)))
return -EIO;
if (likely(bitmap[0] & FATTR4_WORD0_MAXLINK)) {
READ_BUF(4);
READ32(*maxlink);
bitmap[0] &= ~FATTR4_WOR... | 20,337,850,272,581,324,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,516 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_maxname(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *maxname)
{
__be32 *p;
int status = 0;
*maxname = 1024;
if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXNAME - 1U)))
return -EIO;
if (likely(bitmap[0] & FATTR4_WORD0_MAXNAME)) {
READ_BUF(4);
READ32(*maxname);
bitmap[0] &= ~FATTR4_... | 303,534,858,966,971,700,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,517 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_maxread(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
{
__be32 *p;
int status = 0;
*res = 1024;
if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXREAD - 1U)))
return -EIO;
if (likely(bitmap[0] & FATTR4_WORD0_MAXREAD)) {
uint64_t maxread;
READ_BUF(8);
READ64(maxread);
if (maxrea... | 295,259,586,994,395,460,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,518 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_maxwrite(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
{
__be32 *p;
int status = 0;
*res = 1024;
if (unlikely(bitmap[0] & (FATTR4_WORD0_MAXWRITE - 1U)))
return -EIO;
if (likely(bitmap[0] & FATTR4_WORD0_MAXWRITE)) {
uint64_t maxwrite;
READ_BUF(8);
READ64(maxwrite);
if (m... | 172,955,468,821,033,640,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,519 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_mode(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *mode)
{
__be32 *p;
*mode = 0;
if (unlikely(bitmap[1] & (FATTR4_WORD1_MODE - 1U)))
return -EIO;
if (likely(bitmap[1] & FATTR4_WORD1_MODE)) {
READ_BUF(4);
READ32(*mode);
*mode &= ~S_IFMT;
bitmap[1] &= ~FATTR4_WORD1_MODE;
}
dp... | 38,197,017,388,972,476,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,520 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_mounted_on_fileid(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *fileid)
{
__be32 *p;
*fileid = 0;
if (unlikely(bitmap[1] & (FATTR4_WORD1_MOUNTED_ON_FILEID - 1U)))
return -EIO;
if (likely(bitmap[1] & FATTR4_WORD1_MOUNTED_ON_FILEID)) {
READ_BUF(8);
READ64(*fileid);
bitmap[1] &= ~... | 76,543,585,988,840,150,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,521 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_nlink(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *nlink)
{
__be32 *p;
*nlink = 1;
if (unlikely(bitmap[1] & (FATTR4_WORD1_NUMLINKS - 1U)))
return -EIO;
if (likely(bitmap[1] & FATTR4_WORD1_NUMLINKS)) {
READ_BUF(4);
READ32(*nlink);
bitmap[1] &= ~FATTR4_WORD1_NUMLINKS;
}
dprint... | 74,300,575,401,357,220,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,522 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_owner(struct xdr_stream *xdr, uint32_t *bitmap, struct nfs_client *clp, uint32_t *uid)
{
uint32_t len;
__be32 *p;
*uid = -2;
if (unlikely(bitmap[1] & (FATTR4_WORD1_OWNER - 1U)))
return -EIO;
if (likely(bitmap[1] & FATTR4_WORD1_OWNER)) {
READ_BUF(4);
READ32(len);
READ_BUF(len);
if ... | 216,848,084,209,616,150,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,523 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_rdev(struct xdr_stream *xdr, uint32_t *bitmap, dev_t *rdev)
{
uint32_t major = 0, minor = 0;
__be32 *p;
*rdev = MKDEV(0,0);
if (unlikely(bitmap[1] & (FATTR4_WORD1_RAWDEV - 1U)))
return -EIO;
if (likely(bitmap[1] & FATTR4_WORD1_RAWDEV)) {
dev_t tmp;
READ_BUF(8);
READ32(major);
REA... | 5,084,272,026,628,527,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,524 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_size(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *size)
{
__be32 *p;
*size = 0;
if (unlikely(bitmap[0] & (FATTR4_WORD0_SIZE - 1U)))
return -EIO;
if (likely(bitmap[0] & FATTR4_WORD0_SIZE)) {
READ_BUF(8);
READ64(*size);
bitmap[0] &= ~FATTR4_WORD0_SIZE;
}
dprintk("%s: file size... | 180,243,837,887,275,000,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,525 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_space_avail(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
{
__be32 *p;
int status = 0;
*res = 0;
if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_AVAIL - 1U)))
return -EIO;
if (likely(bitmap[1] & FATTR4_WORD1_SPACE_AVAIL)) {
READ_BUF(8);
READ64(*res);
bitmap[1] &= ~FATTR4_WOR... | 69,316,015,174,763,890,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,526 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_space_free(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
{
__be32 *p;
int status = 0;
*res = 0;
if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_FREE - 1U)))
return -EIO;
if (likely(bitmap[1] & FATTR4_WORD1_SPACE_FREE)) {
READ_BUF(8);
READ64(*res);
bitmap[1] &= ~FATTR4_WORD1_... | 89,126,153,169,157,070,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,527 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_space_total(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *res)
{
__be32 *p;
int status = 0;
*res = 0;
if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_TOTAL - 1U)))
return -EIO;
if (likely(bitmap[1] & FATTR4_WORD1_SPACE_TOTAL)) {
READ_BUF(8);
READ64(*res);
bitmap[1] &= ~FATTR4_WOR... | 4,833,766,723,353,832,500,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,528 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_space_used(struct xdr_stream *xdr, uint32_t *bitmap, uint64_t *used)
{
__be32 *p;
*used = 0;
if (unlikely(bitmap[1] & (FATTR4_WORD1_SPACE_USED - 1U)))
return -EIO;
if (likely(bitmap[1] & FATTR4_WORD1_SPACE_USED)) {
READ_BUF(8);
READ64(*used);
bitmap[1] &= ~FATTR4_WORD1_SPACE_USED;
}... | 3,938,345,224,783,303,500,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,529 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_symlink_support(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *res)
{
__be32 *p;
*res = 0;
if (unlikely(bitmap[0] & (FATTR4_WORD0_SYMLINK_SUPPORT - 1U)))
return -EIO;
if (likely(bitmap[0] & FATTR4_WORD0_SYMLINK_SUPPORT)) {
READ_BUF(4);
READ32(*res);
bitmap[0] &= ~FATTR4_WORD0_SY... | 80,987,247,835,162,170,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,530 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_time_access(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
{
int status = 0;
time->tv_sec = 0;
time->tv_nsec = 0;
if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_ACCESS - 1U)))
return -EIO;
if (likely(bitmap[1] & FATTR4_WORD1_TIME_ACCESS)) {
status = decode_attr_time(xdr, ... | 38,956,586,627,439,297,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,531 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_time_metadata(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
{
int status = 0;
time->tv_sec = 0;
time->tv_nsec = 0;
if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_METADATA - 1U)))
return -EIO;
if (likely(bitmap[1] & FATTR4_WORD1_TIME_METADATA)) {
status = decode_attr_time... | 93,373,802,686,019,050,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,532 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_time_modify(struct xdr_stream *xdr, uint32_t *bitmap, struct timespec *time)
{
int status = 0;
time->tv_sec = 0;
time->tv_nsec = 0;
if (unlikely(bitmap[1] & (FATTR4_WORD1_TIME_MODIFY - 1U)))
return -EIO;
if (likely(bitmap[1] & FATTR4_WORD1_TIME_MODIFY)) {
status = decode_attr_time(xdr, ... | 76,096,719,408,360,000,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,533 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_attr_type(struct xdr_stream *xdr, uint32_t *bitmap, uint32_t *type)
{
__be32 *p;
*type = 0;
if (unlikely(bitmap[0] & (FATTR4_WORD0_TYPE - 1U)))
return -EIO;
if (likely(bitmap[0] & FATTR4_WORD0_TYPE)) {
READ_BUF(4);
READ32(*type);
if (*type < NF4REG || *type > NF4NAMEDATTR) {
dprintk("%... | 51,281,394,030,101,160,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,534 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_change_info(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
{
__be32 *p;
READ_BUF(20);
READ32(cinfo->atomic);
READ64(cinfo->before);
READ64(cinfo->after);
return 0;
}
| 34,388,390,220,610,203,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,535 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_close(struct xdr_stream *xdr, struct nfs_closeres *res)
{
__be32 *p;
int status;
status = decode_op_hdr(xdr, OP_CLOSE);
if (status != -EIO)
nfs_increment_open_seqid(status, res->seqid);
if (status)
return status;
READ_BUF(NFS4_STATEID_SIZE);
COPYMEM(res->stateid.data, NFS4_STATEID_SIZE);
... | 328,507,306,404,076,660,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,536 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_commit(struct xdr_stream *xdr, struct nfs_writeres *res)
{
__be32 *p;
int status;
status = decode_op_hdr(xdr, OP_COMMIT);
if (status)
return status;
READ_BUF(8);
COPYMEM(res->verf->verifier, 8);
return 0;
}
| 225,194,998,083,204,400,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,537 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_create(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
{
__be32 *p;
uint32_t bmlen;
int status;
status = decode_op_hdr(xdr, OP_CREATE);
if (status)
return status;
if ((status = decode_change_info(xdr, cinfo)))
return status;
READ_BUF(4);
READ32(bmlen);
READ_BUF(bmlen << 2);
retu... | 57,296,082,170,709,650,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,538 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_delegation(struct xdr_stream *xdr, struct nfs_openres *res)
{
__be32 *p;
uint32_t delegation_type;
READ_BUF(4);
READ32(delegation_type);
if (delegation_type == NFS4_OPEN_DELEGATE_NONE) {
res->delegation_type = 0;
return 0;
}
READ_BUF(NFS4_STATEID_SIZE+4);
COPYMEM(res->delega... | 265,134,705,499,861,420,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,539 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_delegreturn(struct xdr_stream *xdr)
{
return decode_op_hdr(xdr, OP_DELEGRETURN);
}
| 280,416,648,414,054,760,000,000,000,000,000,000,000 | nfs4xdr.c | 95,955,980,007,237,790,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,540 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_fsinfo(struct xdr_stream *xdr, struct nfs_fsinfo *fsinfo)
{
__be32 *savep;
uint32_t attrlen, bitmap[2];
int status;
if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
goto xdr_error;
if ((status = decode_attr_bitmap(xdr, bitmap)) != 0)
goto xdr_error;
if ((status = decode_attr_length(xdr, ... | 19,356,641,929,793,014,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,541 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_getfattr(struct xdr_stream *xdr, struct nfs_fattr *fattr, const struct nfs_server *server)
{
__be32 *savep;
uint32_t attrlen,
bitmap[2] = {0},
type;
int status, fmode = 0;
uint64_t fileid;
if ((status = decode_op_hdr(xdr, OP_GETATTR)) != 0)
goto xdr_error;
if ((status = decode_attr_bitm... | 82,102,710,750,587,460,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,542 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_getfh(struct xdr_stream *xdr, struct nfs_fh *fh)
{
__be32 *p;
uint32_t len;
int status;
/* Zero handle first to allow comparisons */
memset(fh, 0, sizeof(*fh));
status = decode_op_hdr(xdr, OP_GETFH);
if (status)
return status;
READ_BUF(4);
READ32(len);
if (len > NFS4_FHSIZE)
return -E... | 55,435,283,880,971,020,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,543 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_link(struct xdr_stream *xdr, struct nfs4_change_info *cinfo)
{
int status;
status = decode_op_hdr(xdr, OP_LINK);
if (status)
return status;
return decode_change_info(xdr, cinfo);
}
| 8,357,030,233,584,227,000,000,000,000,000,000,000 | nfs4xdr.c | 95,955,980,007,237,790,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,544 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_lock_denied (struct xdr_stream *xdr, struct file_lock *fl)
{
uint64_t offset, length, clientid;
__be32 *p;
uint32_t namelen, type;
READ_BUF(32);
READ64(offset);
READ64(length);
READ32(type);
if (fl != NULL) {
fl->fl_start = (loff_t)offset;
fl->fl_end = fl->fl_start + (loff_t)length - 1;
... | 128,688,611,823,842,620,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,545 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_lockt(struct xdr_stream *xdr, struct nfs_lockt_res *res)
{
int status;
status = decode_op_hdr(xdr, OP_LOCKT);
if (status == -NFS4ERR_DENIED)
return decode_lock_denied(xdr, res->denied);
return status;
}
| 286,560,722,714,961,870,000,000,000,000,000,000,000 | nfs4xdr.c | 95,955,980,007,237,790,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,546 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_locku(struct xdr_stream *xdr, struct nfs_locku_res *res)
{
__be32 *p;
int status;
status = decode_op_hdr(xdr, OP_LOCKU);
if (status != -EIO)
nfs_increment_lock_seqid(status, res->seqid);
if (status == 0) {
READ_BUF(NFS4_STATEID_SIZE);
COPYMEM(res->stateid.data, NFS4_STATEID_SIZE);
}
retu... | 23,401,863,277,251,857,000,000,000,000,000,000,000 | nfs4xdr.c | 115,855,000,563,496,450,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
25,547 | linux | dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | https://github.com/torvalds/linux | https://github.com/torvalds/linux/commit/dc0b027dfadfcb8a5504f7d8052754bf8d501ab9 | NFSv4: Convert the open and close ops to use fmode
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> | 0 | static int decode_lookup(struct xdr_stream *xdr)
{
return decode_op_hdr(xdr, OP_LOOKUP);
}
| 33,983,652,649,984,905,000,000,000,000,000,000,000 | nfs4xdr.c | 95,955,980,007,237,790,000,000,000,000,000,000,000 | [
"CWE-703"
] | CVE-2011-4324 | The encode_share_access function in fs/nfs/nfs4xdr.c in the Linux kernel before 2.6.29 allows local users to cause a denial of service (BUG and system crash) by using the mknod system call with a pathname on an NFSv4 filesystem. | https://nvd.nist.gov/vuln/detail/CVE-2011-4324 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.