cifs: replace snprintf with scnprintf
a trivial patch that replaces all use of snprintf with scnprintf. scnprintf() is generally seen as a safer function to use than snprintf for many use cases. In our case, there is no actual difference between the two since we never look at the return value. Thus we did not have any of the bugs that scnprintf protects against and the patch does nothing. However, for people reading our code it will be a receipt that we have done our due dilligence and checked our code for this type of bugs. See the presentation "Making C Less Dangerous In The Linux Kernel" at this years LCA Signed-off-by: Ronnie Sahlberg <lsahlber@redhat.com> Signed-off-by: Steve French <stfrench@microsoft.com>
Este cometimento está contido em:

cometido por
Steve French

ascendente
68e2672f8f
cometimento
74ea5f983f
@@ -1550,7 +1550,7 @@ static int allocate_caches_and_workqueue(struct smbd_connection *info)
|
||||
char name[MAX_NAME_LEN];
|
||||
int rc;
|
||||
|
||||
snprintf(name, MAX_NAME_LEN, "smbd_request_%p", info);
|
||||
scnprintf(name, MAX_NAME_LEN, "smbd_request_%p", info);
|
||||
info->request_cache =
|
||||
kmem_cache_create(
|
||||
name,
|
||||
@@ -1566,7 +1566,7 @@ static int allocate_caches_and_workqueue(struct smbd_connection *info)
|
||||
if (!info->request_mempool)
|
||||
goto out1;
|
||||
|
||||
snprintf(name, MAX_NAME_LEN, "smbd_response_%p", info);
|
||||
scnprintf(name, MAX_NAME_LEN, "smbd_response_%p", info);
|
||||
info->response_cache =
|
||||
kmem_cache_create(
|
||||
name,
|
||||
@@ -1582,7 +1582,7 @@ static int allocate_caches_and_workqueue(struct smbd_connection *info)
|
||||
if (!info->response_mempool)
|
||||
goto out3;
|
||||
|
||||
snprintf(name, MAX_NAME_LEN, "smbd_%p", info);
|
||||
scnprintf(name, MAX_NAME_LEN, "smbd_%p", info);
|
||||
info->workqueue = create_workqueue(name);
|
||||
if (!info->workqueue)
|
||||
goto out4;
|
||||
|
Criar uma nova questão referindo esta
Bloquear um utilizador