2012-01-23 08:45:24 +00:00
/* GStreamer
* Copyright ( C ) 2011 Axis Communications < dev - gstreamer @ axis . com >
*
* This library is free software ; you can redistribute it and / or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation ; either
* version 2 of the License , or ( at your option ) any later version .
*
* This library is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
* Library General Public License for more details .
*
* You should have received a copy of the GNU Library General Public
* License along with this library ; if not , write to the
2012-11-03 20:38:00 +00:00
* Free Software Foundation , Inc . , 51 Franklin St , Fifth Floor ,
* Boston , MA 02110 - 1301 , USA .
2012-01-23 08:45:24 +00:00
*/
/**
* SECTION : element - curlftpsink
2017-03-08 18:01:13 +00:00
* @ title : curlftpsink
2012-01-23 08:45:24 +00:00
* @ short_description : sink that uploads data to a server using libcurl
*
* This is a network sink that uses libcurl as a client to upload data to
* an FTP server .
*
2017-03-08 18:01:13 +00:00
* # # Example launch line
*
* Upload a JPEG file to / home / test / images * directory )
*
2012-01-23 08:45:24 +00:00
* | [
2015-12-14 02:09:46 +00:00
* gst - launch - 1.0 filesrc location = image . jpg ! jpegparse ! curlftpsink \
2012-01-23 08:45:24 +00:00
* file - name = image . jpg \
* location = ftp : //192.168.0.1/images/
* ] |
2017-03-08 18:01:13 +00:00
*
2012-01-23 08:45:24 +00:00
*/
# ifdef HAVE_CONFIG_H
# include "config.h"
# endif
# include <curl/curl.h>
# include <string.h>
# include <stdio.h>
2012-09-26 04:20:49 +00:00
# if HAVE_SYS_SOCKET_H
2012-01-23 08:45:24 +00:00
# include <sys/socket.h>
2012-09-26 04:20:49 +00:00
# endif
2012-01-23 08:45:24 +00:00
# include <sys/types.h>
2012-09-26 04:20:49 +00:00
# if HAVE_NETINET_IN_H
2012-01-23 08:45:24 +00:00
# include <netinet/in.h>
2012-09-26 04:20:49 +00:00
# endif
2012-01-23 08:45:24 +00:00
# include <unistd.h>
2012-09-26 04:20:49 +00:00
# if HAVE_NETINET_IP_H
2012-01-23 08:45:24 +00:00
# include <netinet/ip.h>
2012-09-26 04:20:49 +00:00
# endif
# if HAVE_NETINET_TCP_H
2012-01-23 08:45:24 +00:00
# include <netinet/tcp.h>
2012-09-26 04:20:49 +00:00
# endif
2012-01-23 08:45:24 +00:00
# include <sys/stat.h>
# include <fcntl.h>
2021-02-17 10:55:14 +00:00
# include "gstcurlelements.h"
2012-01-23 08:45:24 +00:00
# include "gstcurltlssink.h"
# include "gstcurlftpsink.h"
/* Default values */
# define GST_CAT_DEFAULT gst_curl_ftp_sink_debug
2013-12-17 11:06:13 +00:00
# define RENAME_TO "RNTO "
# define RENAME_FROM "RNFR "
2012-01-23 08:45:24 +00:00
/* Plugin specific settings */
GST_DEBUG_CATEGORY_STATIC ( gst_curl_ftp_sink_debug ) ;
enum
{
PROP_0 ,
PROP_FTP_PORT_ARG ,
PROP_EPSV_MODE ,
2013-12-17 11:06:13 +00:00
PROP_CREATE_TEMP_FILE ,
PROP_CREATE_TEMP_FILE_NAME ,
2012-01-23 08:45:24 +00:00
PROP_CREATE_DIRS
} ;
/* Object class function declarations */
/* private functions */
static void gst_curl_ftp_sink_set_property ( GObject * object , guint prop_id ,
const GValue * value , GParamSpec * pspec ) ;
static void gst_curl_ftp_sink_get_property ( GObject * object , guint prop_id ,
GValue * value , GParamSpec * pspec ) ;
static void gst_curl_ftp_sink_finalize ( GObject * gobject ) ;
static gboolean set_ftp_options_unlocked ( GstCurlBaseSink * curlbasesink ) ;
static gboolean set_ftp_dynamic_options_unlocked
( GstCurlBaseSink * curlbasesink ) ;
# define gst_curl_ftp_sink_parent_class parent_class
G_DEFINE_TYPE ( GstCurlFtpSink , gst_curl_ftp_sink , GST_TYPE_CURL_TLS_SINK ) ;
2021-02-17 10:55:14 +00:00
GST_ELEMENT_REGISTER_DEFINE_WITH_CODE ( curlftpsink , " curlftpsink " ,
GST_RANK_NONE , GST_TYPE_CURL_FTP_SINK , curl_element_init ( plugin ) ) ;
2012-01-23 08:45:24 +00:00
static void
gst_curl_ftp_sink_class_init ( GstCurlFtpSinkClass * klass )
{
GObjectClass * gobject_class = G_OBJECT_CLASS ( klass ) ;
GstCurlBaseSinkClass * gstcurlbasesink_class = ( GstCurlBaseSinkClass * ) klass ;
GstElementClass * element_class = GST_ELEMENT_CLASS ( klass ) ;
GST_DEBUG_CATEGORY_INIT ( gst_curl_ftp_sink_debug , " curlftpsink " , 0 ,
" curl ftp sink element " ) ;
2012-10-17 16:34:26 +00:00
gst_element_class_set_static_metadata ( element_class ,
2012-01-23 08:45:24 +00:00
" Curl ftp sink " ,
" Sink/Network " ,
" Upload data over FTP protocol using libcurl " ,
" Patricia Muscalu <patricia@axis.com> " ) ;
gobject_class - > finalize = GST_DEBUG_FUNCPTR ( gst_curl_ftp_sink_finalize ) ;
gobject_class - > set_property = gst_curl_ftp_sink_set_property ;
gobject_class - > get_property = gst_curl_ftp_sink_get_property ;
gstcurlbasesink_class - > set_protocol_dynamic_options_unlocked =
set_ftp_dynamic_options_unlocked ;
gstcurlbasesink_class - > set_options_unlocked = set_ftp_options_unlocked ;
g_object_class_install_property ( gobject_class , PROP_FTP_PORT_ARG ,
g_param_spec_string ( " ftp-port " , " IP address for FTP PORT instruction " ,
" The PORT instruction tells the remote server to connect to "
" the IP address " , " " , G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS ) ) ;
g_object_class_install_property ( gobject_class , PROP_EPSV_MODE ,
g_param_spec_boolean ( " epsv-mode " , " Extended passive mode " ,
" Enable the use of the EPSV command when doing passive FTP transfers " ,
TRUE , G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS ) ) ;
2013-12-17 11:06:13 +00:00
g_object_class_install_property ( gobject_class , PROP_CREATE_TEMP_FILE ,
2013-12-17 11:17:51 +00:00
g_param_spec_boolean ( " create-tmp-file " , " Enable or disable temporary file transfer " , " Use a temporary file name when uploading a a file. When the transfer is complete, \
2013-12-17 11:06:13 +00:00
this temporary file is renamed to the final file name . This is useful for ensuring \
2013-12-17 11:17:51 +00:00
that remote systems do not read a partially uploaded file " , FALSE, G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS ) ) ;
2013-12-17 11:06:13 +00:00
g_object_class_install_property ( gobject_class , PROP_CREATE_TEMP_FILE_NAME ,
2013-12-17 11:17:51 +00:00
g_param_spec_string ( " temp-file-name " ,
" Creates a temporary file name with date and time " ,
2013-12-17 11:06:13 +00:00
" Filename pattern to use when generating a temporary filename for uploads " ,
2013-12-17 11:17:51 +00:00
NULL , G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS ) ) ;
2012-01-23 08:45:24 +00:00
g_object_class_install_property ( gobject_class , PROP_CREATE_DIRS ,
g_param_spec_boolean ( " create-dirs " , " Create missing directories " ,
2013-12-17 11:17:51 +00:00
" Attempt to create missing directory included in the path " , FALSE ,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS ) ) ;
2012-01-23 08:45:24 +00:00
}
static void
gst_curl_ftp_sink_init ( GstCurlFtpSink * sink )
{
}
static void
gst_curl_ftp_sink_finalize ( GObject * gobject )
{
GstCurlFtpSink * this = GST_CURL_FTP_SINK ( gobject ) ;
GST_DEBUG ( " finalizing curlftpsink " ) ;
g_free ( this - > ftp_port_arg ) ;
2013-12-17 11:06:13 +00:00
g_free ( this - > tmpfile_name ) ;
if ( this - > headerlist ) {
curl_slist_free_all ( this - > headerlist ) ;
this - > headerlist = NULL ;
}
2012-01-23 08:45:24 +00:00
G_OBJECT_CLASS ( parent_class ) - > finalize ( gobject ) ;
}
static gboolean
set_ftp_dynamic_options_unlocked ( GstCurlBaseSink * basesink )
{
2013-12-17 11:06:13 +00:00
gchar * tmp = NULL ;
GstCurlFtpSink * sink = GST_CURL_FTP_SINK ( basesink ) ;
2014-04-15 23:50:16 +00:00
CURLcode res ;
2013-12-17 11:17:51 +00:00
if ( sink - > tmpfile_create ) {
2013-12-17 11:06:13 +00:00
gchar * rename_from = NULL ;
gchar * rename_to = NULL ;
gchar * uploadfile_as = NULL ;
gchar * last_slash = NULL ;
gchar * tmpfile_name = NULL ;
if ( sink - > headerlist ! = NULL ) {
2013-12-17 11:17:51 +00:00
curl_slist_free_all ( sink - > headerlist ) ;
sink - > headerlist = NULL ;
2013-12-17 11:06:13 +00:00
}
if ( sink - > tmpfile_name ! = NULL ) {
2013-12-17 11:17:51 +00:00
tmpfile_name = g_strdup_printf ( " %s " , sink - > tmpfile_name ) ;
2013-12-17 11:06:13 +00:00
} else {
2013-12-17 11:17:51 +00:00
tmpfile_name =
g_strdup_printf ( " .tmp.%04X%04X " , g_random_int ( ) , g_random_int ( ) ) ;
2013-12-17 11:06:13 +00:00
}
2012-01-23 08:45:24 +00:00
2013-12-17 11:06:13 +00:00
rename_from = g_strdup_printf ( " %s%s " , RENAME_FROM , tmpfile_name ) ;
last_slash = strrchr ( basesink - > file_name , ' / ' ) ;
if ( last_slash ! = NULL ) {
2014-06-24 14:32:22 +00:00
gchar * dir_name =
2013-12-17 11:17:51 +00:00
g_strndup ( basesink - > file_name , last_slash - basesink - > file_name ) ;
rename_to = g_strdup_printf ( " %s%s " , RENAME_TO , last_slash + 1 ) ;
2013-12-17 11:06:13 +00:00
uploadfile_as = g_strdup_printf ( " %s/%s " , dir_name , tmpfile_name ) ;
2014-06-24 14:32:22 +00:00
g_free ( dir_name ) ;
2013-12-17 11:06:13 +00:00
} else {
2013-12-17 11:17:51 +00:00
rename_to = g_strdup_printf ( " %s%s " , RENAME_TO , basesink - > file_name ) ;
uploadfile_as = g_strdup_printf ( " %s " , tmpfile_name ) ;
2013-12-17 11:06:13 +00:00
}
2014-06-24 14:32:22 +00:00
g_free ( tmpfile_name ) ;
2013-12-17 11:06:13 +00:00
tmp = g_strdup_printf ( " %s%s " , basesink - > url , uploadfile_as ) ;
2014-06-24 14:32:22 +00:00
g_free ( uploadfile_as ) ;
sink - > headerlist = curl_slist_append ( sink - > headerlist , rename_from ) ;
sink - > headerlist = curl_slist_append ( sink - > headerlist , rename_to ) ;
g_free ( rename_from ) ;
g_free ( rename_to ) ;
2014-04-15 23:50:16 +00:00
res = curl_easy_setopt ( basesink - > curl , CURLOPT_URL , tmp ) ;
2014-06-24 14:32:22 +00:00
g_free ( tmp ) ;
2014-04-15 23:50:16 +00:00
if ( res ! = CURLE_OK ) {
basesink - > error = g_strdup_printf ( " failed to set URL: %s " ,
curl_easy_strerror ( res ) ) ;
return FALSE ;
}
2015-11-06 19:23:09 +00:00
res =
curl_easy_setopt ( basesink - > curl , CURLOPT_POSTQUOTE , sink - > headerlist ) ;
2014-04-15 23:50:16 +00:00
if ( res ! = CURLE_OK ) {
basesink - > error = g_strdup_printf ( " failed to set post quote: %s " ,
curl_easy_strerror ( res ) ) ;
return FALSE ;
}
2013-12-17 11:06:13 +00:00
2013-12-17 11:17:51 +00:00
if ( last_slash ! = NULL ) {
2013-12-17 11:06:13 +00:00
* last_slash = ' \0 ' ;
}
} else {
tmp = g_strdup_printf ( " %s%s " , basesink - > url , basesink - > file_name ) ;
2014-04-15 23:50:16 +00:00
res = curl_easy_setopt ( basesink - > curl , CURLOPT_URL , tmp ) ;
2014-06-24 14:32:22 +00:00
g_free ( tmp ) ;
2014-04-15 23:50:16 +00:00
if ( res ! = CURLE_OK ) {
basesink - > error = g_strdup_printf ( " failed to set URL: %s " ,
curl_easy_strerror ( res ) ) ;
return FALSE ;
}
2013-12-17 11:06:13 +00:00
}
2012-01-23 08:45:24 +00:00
return TRUE ;
}
static gboolean
set_ftp_options_unlocked ( GstCurlBaseSink * basesink )
{
GstCurlFtpSink * sink = GST_CURL_FTP_SINK ( basesink ) ;
2014-04-15 23:50:16 +00:00
CURLcode res ;
2012-01-23 08:45:24 +00:00
2014-04-15 23:50:16 +00:00
res = curl_easy_setopt ( basesink - > curl , CURLOPT_UPLOAD , 1L ) ;
if ( res ! = CURLE_OK ) {
basesink - > error = g_strdup_printf ( " failed to prepare for upload: %s " ,
curl_easy_strerror ( res ) ) ;
return FALSE ;
}
2012-01-23 08:45:24 +00:00
if ( sink - > ftp_port_arg ! = NULL & & ( strlen ( sink - > ftp_port_arg ) > 0 ) ) {
/* Connect data stream actively. */
2014-04-15 23:50:16 +00:00
res = curl_easy_setopt ( basesink - > curl , CURLOPT_FTPPORT ,
2012-01-23 08:45:24 +00:00
sink - > ftp_port_arg ) ;
if ( res ! = CURLE_OK ) {
2014-04-15 21:53:32 +00:00
basesink - > error = g_strdup_printf ( " failed to set up active mode: %s " ,
2012-01-23 08:45:24 +00:00
curl_easy_strerror ( res ) ) ;
return FALSE ;
}
2014-04-15 23:50:16 +00:00
} else {
/* Connect data stream passively.
* libcurl will always attempt to use EPSV before PASV .
*/
if ( ! sink - > epsv_mode ) {
/* send only plain PASV command */
res = curl_easy_setopt ( basesink - > curl , CURLOPT_FTP_USE_EPSV , 0 ) ;
if ( res ! = CURLE_OK ) {
basesink - > error =
g_strdup_printf ( " failed to set extended passive mode: %s " ,
curl_easy_strerror ( res ) ) ;
return FALSE ;
}
}
2012-01-23 08:45:24 +00:00
}
if ( sink - > create_dirs ) {
2014-04-15 23:50:16 +00:00
res = curl_easy_setopt ( basesink - > curl , CURLOPT_FTP_CREATE_MISSING_DIRS ,
1L ) ;
if ( res ! = CURLE_OK ) {
basesink - > error =
g_strdup_printf ( " failed to set create missing dirs: %s " ,
curl_easy_strerror ( res ) ) ;
return FALSE ;
}
2012-01-23 08:45:24 +00:00
}
return TRUE ;
}
static void
gst_curl_ftp_sink_set_property ( GObject * object , guint prop_id ,
const GValue * value , GParamSpec * pspec )
{
GstCurlFtpSink * sink ;
GstState cur_state ;
g_return_if_fail ( GST_IS_CURL_FTP_SINK ( object ) ) ;
sink = GST_CURL_FTP_SINK ( object ) ;
gst_element_get_state ( GST_ELEMENT ( sink ) , & cur_state , NULL , 0 ) ;
if ( cur_state ! = GST_STATE_PLAYING & & cur_state ! = GST_STATE_PAUSED ) {
GST_OBJECT_LOCK ( sink ) ;
switch ( prop_id ) {
case PROP_FTP_PORT_ARG :
g_free ( sink - > ftp_port_arg ) ;
sink - > ftp_port_arg = g_value_dup_string ( value ) ;
GST_DEBUG_OBJECT ( sink , " ftp-port set to %s " , sink - > ftp_port_arg ) ;
break ;
case PROP_EPSV_MODE :
sink - > epsv_mode = g_value_get_boolean ( value ) ;
GST_DEBUG_OBJECT ( sink , " epsv-mode set to %d " , sink - > epsv_mode ) ;
break ;
2013-12-17 11:06:13 +00:00
case PROP_CREATE_TEMP_FILE :
sink - > tmpfile_create = g_value_get_boolean ( value ) ;
2013-12-17 11:17:51 +00:00
GST_DEBUG_OBJECT ( sink , " create-tmp-file set to %d " ,
sink - > tmpfile_create ) ;
2013-12-17 11:06:13 +00:00
break ;
case PROP_CREATE_TEMP_FILE_NAME :
g_free ( sink - > tmpfile_name ) ;
sink - > tmpfile_name = g_value_dup_string ( value ) ;
GST_DEBUG_OBJECT ( sink , " tmp-file-name set to %s " , sink - > tmpfile_name ) ;
2013-12-17 11:17:51 +00:00
break ;
2012-01-23 08:45:24 +00:00
case PROP_CREATE_DIRS :
sink - > create_dirs = g_value_get_boolean ( value ) ;
GST_DEBUG_OBJECT ( sink , " create-dirs set to %d " , sink - > create_dirs ) ;
break ;
default :
GST_DEBUG_OBJECT ( sink , " invalid property id %d " , prop_id ) ;
break ;
}
GST_OBJECT_UNLOCK ( sink ) ;
}
}
static void
gst_curl_ftp_sink_get_property ( GObject * object , guint prop_id ,
GValue * value , GParamSpec * pspec )
{
GstCurlFtpSink * sink ;
g_return_if_fail ( GST_IS_CURL_FTP_SINK ( object ) ) ;
sink = GST_CURL_FTP_SINK ( object ) ;
switch ( prop_id ) {
case PROP_FTP_PORT_ARG :
g_value_set_string ( value , sink - > ftp_port_arg ) ;
break ;
case PROP_EPSV_MODE :
g_value_set_boolean ( value , sink - > epsv_mode ) ;
break ;
2013-12-17 11:06:13 +00:00
case PROP_CREATE_TEMP_FILE :
g_value_set_boolean ( value , sink - > tmpfile_create ) ;
break ;
case PROP_CREATE_TEMP_FILE_NAME :
g_value_set_string ( value , sink - > tmpfile_name ) ;
2013-12-17 11:17:51 +00:00
break ;
2012-01-23 08:45:24 +00:00
case PROP_CREATE_DIRS :
g_value_set_boolean ( value , sink - > create_dirs ) ;
break ;
default :
GST_DEBUG_OBJECT ( sink , " invalid property id " ) ;
break ;
}
}