cregit-Linux how code gets into the kernel

Release 4.10 fs/dlm/netlink.c

Directory: fs/dlm
/*
 * Copyright (C) 2007 Red Hat, Inc.  All rights reserved.
 *
 * This copyrighted material is made available to anyone wishing to use,
 * modify, copy, or redistribute it subject to the terms and conditions
 * of the GNU General Public License v.2.
 */

#include <net/genetlink.h>
#include <linux/dlm.h>
#include <linux/dlm_netlink.h>
#include <linux/gfp.h>

#include "dlm_internal.h"


static uint32_t dlm_nl_seqnum;

static uint32_t listener_nlportid;


static struct genl_family family;


static int prepare_data(u8 cmd, struct sk_buff **skbp, size_t size) { struct sk_buff *skb; void *data; skb = genlmsg_new(size, GFP_NOFS); if (!skb) return -ENOMEM; /* add the message headers */ data = genlmsg_put(skb, 0, dlm_nl_seqnum++, &family, 0, cmd); if (!data) { nlmsg_free(skb); return -EINVAL; } *skbp = skb; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
david teiglanddavid teigland89100.00%2100.00%
Total89100.00%2100.00%


static struct dlm_lock_data *mk_data(struct sk_buff *skb) { struct nlattr *ret; ret = nla_reserve(skb, DLM_TYPE_LOCK, sizeof(struct dlm_lock_data)); if (!ret) return NULL; return nla_data(ret); }

Contributors

PersonTokensPropCommitsCommitProp
david teiglanddavid teigland47100.00%1100.00%
Total47100.00%1100.00%


static int send_data(struct sk_buff *skb) { struct genlmsghdr *genlhdr = nlmsg_data((struct nlmsghdr *)skb->data); void *data = genlmsg_data(genlhdr); genlmsg_end(skb, data); return genlmsg_unicast(&init_net, skb, listener_nlportid); }

Contributors

PersonTokensPropCommitsCommitProp
david teiglanddavid teigland5192.73%133.33%
johannes bergjohannes berg35.45%133.33%
eric w. biedermaneric w. biederman11.82%133.33%
Total55100.00%3100.00%


static int user_cmd(struct sk_buff *skb, struct genl_info *info) { listener_nlportid = info->snd_portid; printk("user_cmd nlpid %u\n", listener_nlportid); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
david teiglanddavid teigland2990.62%150.00%
eric w. biedermaneric w. biederman39.38%150.00%
Total32100.00%2100.00%

static const struct genl_ops dlm_nl_ops[] = { { .cmd = DLM_CMD_HELLO, .doit = user_cmd, }, }; static struct genl_family family __ro_after_init = { .name = DLM_GENL_NAME, .version = DLM_GENL_VERSION, .ops = dlm_nl_ops, .n_ops = ARRAY_SIZE(dlm_nl_ops), .module = THIS_MODULE, };
int __init dlm_netlink_init(void) { return genl_register_family(&family); }

Contributors

PersonTokensPropCommitsCommitProp
david teiglanddavid teigland1386.67%133.33%
cheng renquancheng renquan16.67%133.33%
johannes bergjohannes berg16.67%133.33%
Total15100.00%3100.00%


void dlm_netlink_exit(void) { genl_unregister_family(&family); }

Contributors

PersonTokensPropCommitsCommitProp
david teiglanddavid teigland13100.00%1100.00%
Total13100.00%1100.00%


static void fill_data(struct dlm_lock_data *data, struct dlm_lkb *lkb) { struct dlm_rsb *r = lkb->lkb_resource; memset(data, 0, sizeof(struct dlm_lock_data)); data->version = DLM_LOCK_DATA_VERSION; data->nodeid = lkb->lkb_nodeid; data->ownpid = lkb->lkb_ownpid; data->id = lkb->lkb_id; data->remid = lkb->lkb_remid; data->status = lkb->lkb_status; data->grmode = lkb->lkb_grmode; data->rqmode = lkb->lkb_rqmode; if (lkb->lkb_ua) data->xid = lkb->lkb_ua->xid; if (r) { data->lockspace_id = r->res_ls->ls_global_id; data->resource_namelen = r->res_length; memcpy(data->resource_name, r->res_name, r->res_length); } }

Contributors

PersonTokensPropCommitsCommitProp
david teiglanddavid teigland155100.00%2100.00%
Total155100.00%2100.00%


void dlm_timeout_warn(struct dlm_lkb *lkb) { struct sk_buff *uninitialized_var(send_skb); struct dlm_lock_data *data; size_t size; int rv; size = nla_total_size(sizeof(struct dlm_lock_data)) + nla_total_size(0); /* why this? */ rv = prepare_data(DLM_CMD_TIMEOUT, &send_skb, size); if (rv < 0) return; data = mk_data(send_skb); if (!data) { nlmsg_free(send_skb); return; } fill_data(data, lkb); send_data(send_skb); }

Contributors

PersonTokensPropCommitsCommitProp
david teiglanddavid teigland9092.78%150.00%
ingo molnaringo molnar77.22%150.00%
Total97100.00%2100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
david teiglanddavid teigland52989.81%325.00%
johannes bergjohannes berg437.30%433.33%
ingo molnaringo molnar71.19%18.33%
eric w. biedermaneric w. biederman50.85%18.33%
tejun heotejun heo30.51%18.33%
cheng renquancheng renquan10.17%18.33%
stephen hemmingerstephen hemminger10.17%18.33%
Total589100.00%12100.00%
Directory: fs/dlm
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.