web-dev-qa-db-fra.com

Comment arrêter les threads du noyau Linux sur rmmod?

J'ai écrit le code suivant pour créer un fil de noyau:

#include<linux/init.h>
#include<linux/module.h>
#include<linux/kernel.h>
#include<linux/kthread.h>
#include<linux/sched.h>

struct task_struct *task;
int data;
int ret;
int thread_function(void *data)
{
    int var;
    var = 10;
    return var;
}

static int kernel_init(void)
{
    data = 20;
    printk(KERN_INFO"--------------------------------------------");
    task = kthread_create(&thread_function,(void *)data,"pradeep");
    task = kthread_run(&thread_function,(void *)data,"pradeep");
    printk(KERN_INFO"Kernel Thread : %s\n",task->comm);
    return 0;
}

static void kernel_exit(void)
{
    ret = kthread_stop(task);
}

module_init(kernel_init);
module_exit(kernel_exit);

En donnant la commande insmod, je suis capable de créer un thread du noyau nommé "pradeep" et je peux voir le nouveau thread en utilisant le ps -ef commande comme suit

root      6071     2  0 10:21 ?        00:00:00 [pradeep]

et son parent est kthreadd dont le PID est 2. Mais je ne peux pas arrêter ce thread en donnant la commande rmmod. Il donne la sortie suivante:

ERROR: Removing 'pradeep': Device or resource busy.

Quelqu'un peut-il me dire comment tuer ce fil?

22
pradeepchhetri

Vous ne devez utiliser qu'une seule de kthread_create() ou kthread_run():

/**
 * kthread_run - create and wake a thread.
 * @threadfn: the function to run until signal_pending(current).
 * @data: data ptr for @threadfn.
 * @namefmt: printf-style name for the thread.
 *
 * Description: Convenient wrapper for kthread_create() followed by
 * wake_up_process().  Returns the kthread or ERR_PTR(-ENOMEM).
 */
#define kthread_run(threadfn, data, namefmt, ...)                      \
({                                                                     \
    struct task_struct *__k                                            \
            = kthread_create(threadfn, data, namefmt, ## __VA_ARGS__); \
    if (!IS_ERR(__k))                                                  \
            wake_up_process(__k);                                      \
    __k;                                                               \
})

Vous créez donc deux threads et fuyez l'un d'eux:

task = kthread_create(&thread_function,(void*) &data,"pradeep");
task = kthread_run(&thread_function,(void*) &data,"pradeep");

De plus, il se peut que votre fonction de thread manque certains détails:

/**
 * kthread_create - create a kthread.
 * @threadfn: the function to run until signal_pending(current).
 * @data: data ptr for @threadfn.
 * @namefmt: printf-style name for the thread.
 *
 * Description: This helper function creates and names a kernel
 * thread.  The thread will be stopped: use wake_up_process() to start
 * it.  See also kthread_run().
 *
 * When woken, the thread will run @threadfn() with @data as its
 * argument. @threadfn() can either call do_exit() directly if it is a
 * standalone thread for which noone will call kthread_stop(), or
 * return when 'kthread_should_stop()' is true (which means
 * kthread_stop() has been called).  The return value should be zero
 * or a negative error number; it will be passed to kthread_stop().
 *
 * Returns a task_struct or ERR_PTR(-ENOMEM).
 */

Je pense que les deux choix pour terminer un fil sont:

  1. Appelez do_exit() lorsque vous avez terminé.
  2. Renvoie une valeur lorsqu'un autre thread appelle kthread_stop().

Avec un peu de chance, après avoir résolu ces deux petits problèmes, vous aurez un créateur/reaper de thread fonctionnel.

39
sarnold

J'espère que le programme ci-dessous résout votre problème .... bravo :-)

`#include<linux/init.h>
 #include<linux/module.h>
 #include<linux/kernel.h>
 #include<linux/kthread.h>
 #include<linux/sched.h>`

struct task_struct *task;
int data;
int ret;
int thread_function(void *data)
{
  int var;
 var = 10;
     printk(KERN_INFO "IN THREAD FUNCTION");
     while(!kthread_should_stop()){
             schedule();
             }
     /*do_exit(1);*/
  return var;

}

static int kernel_init(void)
{
   data = 20;
   printk(KERN_INFO"--------------------------------------------");
   /*task = kthread_create(&thread_function,(void *)data,"pradeep");*/
   task = kthread_run(&thread_function,(void *)data,"pradeep");
   printk(KERN_INFO"Kernel Thread : %s\n",task->comm);
   return 0;
}

static void kernel_exit(void)
{
   kthread_stop(task);
}

module_init(kernel_init);
module_exit(kernel_exit);
MODULE_AUTHOR("SHRQ");
MODULE_LICENSE("GPL");
5
MSharq

dans le code, vous n'avez pas besoin d'utiliser kthread_create api comme kthread_run le fait en interne. Utilisez soit

task = kthread_create (& thread_function, (void *) data, "pradeep");
OU
task = kthread_run (& thread_function, (void *) data, "pradeep");

De plus, votre module n'est pas sous licence GPL. Cela pourrait être l'une des causes de vos problèmes.

0
Goresh